source: src/Actions/MoleculeAction/FillWithMoleculeAction.cpp@ 9907e7

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 9907e7 was 9907e7, checked in by Frederik Heber <heber@…>, 15 years ago

Case '-F' is now handled by CommandLineUI.

  • FIX: FillWithMoleculeAction was still using internally created water instead of molecule parsed from xyz file.
  • Property mode set to 100644
File size: 4.6 KB
Line 
1/*
2 * FillWithMoleculeAction.cpp
3 *
4 * Created on: May 10, 2010
5 * Author: heber
6 */
7
8#include "Actions/MoleculeAction/FillWithMoleculeAction.hpp"
9
10#include <iostream>
11#include <string>
12
13using namespace std;
14
15#include "UIElements/UIFactory.hpp"
16#include "UIElements/Dialog.hpp"
17#include "Actions/MapOfActions.hpp"
18
19#include "atom.hpp"
20#include "bondgraph.hpp"
21#include "boundary.hpp"
22#include "config.hpp"
23#include "defs.hpp"
24#include "molecule.hpp"
25#include "periodentafel.hpp"
26#include "vector.hpp"
27#include "verbose.hpp"
28#include "World.hpp"
29
30/****** MoleculeFillWithMoleculeAction *****/
31
32// memento to remember the state when undoing
33
34//class MoleculeFillWithMoleculeState : public ActionState {
35//public:
36// MoleculeFillWithMoleculeState(molecule* _mol,std::string _lastName) :
37// mol(_mol),
38// lastName(_lastName)
39// {}
40// molecule* mol;
41// std::string lastName;
42//};
43
44const char MoleculeFillWithMoleculeAction::NAME[] = "fill-molecule";
45
46MoleculeFillWithMoleculeAction::MoleculeFillWithMoleculeAction() :
47 Action(NAME)
48{}
49
50MoleculeFillWithMoleculeAction::~MoleculeFillWithMoleculeAction()
51{}
52
53Action::state_ptr MoleculeFillWithMoleculeAction::performCall() {
54 string filename;
55 Dialog *dialog = UIFactory::getInstance().makeDialog();
56 Vector distances;
57 Vector lengths;
58 double MaxDistance = -1.;
59 bool DoRotate = false;
60
61 dialog->queryString(NAME, &filename, MapOfActions::getInstance().getDescription(NAME));
62 dialog->queryVector("distances", &distances, World::getInstance().getDomain(), false, MapOfActions::getInstance().getDescription("distances"));
63 dialog->queryVector("lengths", &lengths, World::getInstance().getDomain(), false, MapOfActions::getInstance().getDescription("lengths"));
64 dialog->queryBoolean("DoRotate", &DoRotate, MapOfActions::getInstance().getDescription("DoRotate"));
65 dialog->queryDouble("MaxDistance", &MaxDistance, MapOfActions::getInstance().getDescription("MaxDistance"));
66
67 if(dialog->display()) {
68 DoLog(1) && (Log() << Verbose(1) << "Filling Box with water molecules, lengths(" << lengths[0] << "," << lengths[1] << "," << lengths[2] << "), distances (" << distances[0] << "," << distances[1] << "," << distances[2] << "), MaxDistance " << MaxDistance << ", DoRotate " << DoRotate << "." << endl);
69 // construct water molecule
70 molecule *filler = World::getInstance().createMolecule();
71 if (!filler->AddXYZFile(filename)) {
72 DoeLog(0) && (eLog()<< Verbose(0) << "Could not parse filler molecule from " << filename << "." << endl);
73 }
74 filler->SetNameFromFilename(filename.c_str());
75 molecule *Filling = NULL;
76// atom *first = NULL, *second = NULL, *third = NULL;
77// first = World::getInstance().createAtom();
78// first->type = World::getInstance().getPeriode()->FindElement(1);
79// first->x = Vector(0.441, -0.143, 0.);
80// filler->AddAtom(first);
81// second = World::getInstance().createAtom();
82// second->type = World::getInstance().getPeriode()->FindElement(1);
83// second->x = Vector(-0.464, 1.137, 0.0);
84// filler->AddAtom(second);
85// third = World::getInstance().createAtom();
86// third->type = World::getInstance().getPeriode()->FindElement(8);
87// third->x = Vector(-0.464, 0.177, 0.);
88// filler->AddAtom(third);
89// filler->AddBond(first, third, 1);
90// filler->AddBond(second, third, 1);
91 World::getInstance().getConfig()->BG->ConstructBondGraph(filler);
92// filler->SetNameFromFilename("water");
93 // call routine
94 double distance[NDIM];
95 for (int i=0;i<NDIM;i++)
96 distance[i] = distances[i];
97 Filling = FillBoxWithMolecule(World::getInstance().getMolecules(), filler, *(World::getInstance().getConfig()), MaxDistance, distance, lengths[0], lengths[1], lengths[2], DoRotate);
98 if (Filling != NULL) {
99 Filling->ActiveFlag = false;
100 World::getInstance().getMolecules()->insert(Filling);
101 }
102 World::getInstance().destroyMolecule(filler);
103
104 delete dialog;
105 return Action::success;
106 }
107 delete dialog;
108 return Action::failure;
109}
110
111Action::state_ptr MoleculeFillWithMoleculeAction::performUndo(Action::state_ptr _state) {
112// MoleculeFillWithMoleculeState *state = assert_cast<MoleculeFillWithMoleculeState*>(_state.get());
113
114// string newName = state->mol->getName();
115// state->mol->setName(state->lastName);
116
117 return Action::failure;
118}
119
120Action::state_ptr MoleculeFillWithMoleculeAction::performRedo(Action::state_ptr _state){
121 // Undo and redo have to do the same for this action
122 return performUndo(_state);
123}
124
125bool MoleculeFillWithMoleculeAction::canUndo() {
126 return false;
127}
128
129bool MoleculeFillWithMoleculeAction::shouldUndo() {
130 return false;
131}
132
133const string MoleculeFillWithMoleculeAction::getName() {
134 return NAME;
135}
Note: See TracBrowser for help on using the repository browser.