source: src/Actions/AnalysisAction/PairCorrelationAction.cpp@ 192f6e

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 192f6e was 2a374e, checked in by Frederik Heber <heber@…>, 15 years ago

MEMFIX: AnalysisPairCorrelationAction::performCall() did not free LCList, TesselStruct and Actives

  • also Actives have not been used to re-set the ActiveFlag of all molecules.

Signed-off-by: Frederik Heber <heber@…>

  • Property mode set to 100644
File size: 6.8 KB
Line 
1/*
2 * PairCorrelationAction.cpp
3 *
4 * Created on: May 9, 2010
5 * Author: heber
6 */
7
8#include "Helpers/MemDebug.hpp"
9
10#include "Actions/AnalysisAction/PairCorrelationAction.hpp"
11#include "analysis_correlation.hpp"
12#include "boundary.hpp"
13#include "linkedcell.hpp"
14#include "log.hpp"
15#include "element.hpp"
16#include "molecule.hpp"
17#include "periodentafel.hpp"
18#include "vector.hpp"
19#include "World.hpp"
20
21#include <iostream>
22#include <string>
23
24using namespace std;
25
26#include "UIElements/UIFactory.hpp"
27#include "UIElements/Dialog.hpp"
28#include "Actions/MapOfActions.hpp"
29
30const char AnalysisPairCorrelationAction::NAME[] = "pair-correlation";
31
32AnalysisPairCorrelationAction::AnalysisPairCorrelationAction() :
33 Action(NAME)
34{}
35
36AnalysisPairCorrelationAction::~AnalysisPairCorrelationAction()
37{}
38
39Action::state_ptr AnalysisPairCorrelationAction::performCall() {
40 Dialog *dialog = UIFactory::getInstance().makeDialog();
41 int ranges[3] = {1, 1, 1};
42 double BinEnd = 0.;
43 double BinStart = 0.;
44 double BinWidth = 0.;
45 molecule *Boundary = NULL;
46 string outputname;
47 string binoutputname;
48 bool periodic;
49 ofstream output;
50 ofstream binoutput;
51 std::vector< element *> elements;
52 string type;
53 Vector Point;
54 BinPairMap *binmap = NULL;
55 MoleculeListClass *molecules = World::getInstance().getMolecules();
56
57 // first dialog: Obtain which type of correlation
58 dialog->queryString(NAME, &type, MapOfActions::getInstance().getDescription(NAME));
59 if(dialog->display()) {
60 delete dialog;
61 } else {
62 delete dialog;
63 return Action::failure;
64 }
65
66 // second dialog: Obtain parameters specific to this type
67 dialog = UIFactory::getInstance().makeDialog();
68 if (type == "P")
69 dialog->queryVector("position", &Point, World::getInstance().getDomain(), false, MapOfActions::getInstance().getDescription("position"));
70 if (type == "S")
71 dialog->queryMolecule("molecule-by-id", &Boundary, MapOfActions::getInstance().getDescription("molecule-by-id"));
72 dialog->queryElement("elements", &elements, MapOfActions::getInstance().getDescription("elements"));
73 dialog->queryDouble("bin-start", &BinStart, MapOfActions::getInstance().getDescription("bin-start"));
74 dialog->queryDouble("bin-width", &BinWidth, MapOfActions::getInstance().getDescription("bin-width"));
75 dialog->queryDouble("bin-end", &BinEnd, MapOfActions::getInstance().getDescription("bin-end"));
76 dialog->queryString("output-file", &outputname, MapOfActions::getInstance().getDescription("output-file"));
77 dialog->queryString("bin-output-file", &binoutputname, MapOfActions::getInstance().getDescription("bin-output-file"));
78 dialog->queryBoolean("periodic", &periodic, MapOfActions::getInstance().getDescription("periodic"));
79
80 if(dialog->display()) {
81 output.open(outputname.c_str());
82 binoutput.open(binoutputname.c_str());
83 if (type == "E") {
84 PairCorrelationMap *correlationmap = NULL;
85 if (periodic)
86 correlationmap = PeriodicPairCorrelation(World::getInstance().getMolecules(), elements, ranges);
87 else
88 correlationmap = PairCorrelation(World::getInstance().getMolecules(), elements);
89 OutputPairCorrelation(&output, correlationmap);
90 binmap = BinData( correlationmap, BinWidth, BinStart, BinEnd );
91 OutputCorrelation ( &binoutput, binmap );
92 delete(binmap);
93 delete(correlationmap);
94 } else if (type == "P") {
95 cout << "Point to correlate to is " << Point << endl;
96 CorrelationToPointMap *correlationmap = NULL;
97 if (periodic)
98 correlationmap = PeriodicCorrelationToPoint(molecules, elements, &Point, ranges);
99 else
100 correlationmap = CorrelationToPoint(molecules, elements, &Point);
101 OutputCorrelationToPoint(&output, correlationmap);
102 binmap = BinData( correlationmap, BinWidth, BinStart, BinEnd );
103 OutputCorrelation ( &binoutput, binmap );
104 delete(binmap);
105 delete(correlationmap);
106 } else if (type == "S") {
107 ASSERT(Boundary != NULL, "No molecule specified for SurfaceCorrelation.");
108 const double radius = 4.;
109 double LCWidth = 20.;
110 if (BinEnd > 0) {
111 if (BinEnd > 2.*radius)
112 LCWidth = BinEnd;
113 else
114 LCWidth = 2.*radius;
115 }
116
117 // get the boundary
118 class Tesselation *TesselStruct = NULL;
119 const LinkedCell *LCList = NULL;
120 // find biggest molecule
121 int counter = molecules->ListOfMolecules.size();
122 bool *Actives = new bool[counter];
123 counter = 0;
124 for (MoleculeList::iterator BigFinder = molecules->ListOfMolecules.begin(); BigFinder != molecules->ListOfMolecules.end(); BigFinder++) {
125 Actives[counter++] = (*BigFinder)->ActiveFlag;
126 (*BigFinder)->ActiveFlag = (*BigFinder == Boundary) ? false : true;
127 }
128 LCList = new LinkedCell(Boundary, LCWidth);
129 FindNonConvexBorder(Boundary, TesselStruct, LCList, radius, NULL);
130 CorrelationToSurfaceMap *surfacemap = NULL;
131 if (periodic)
132 surfacemap = PeriodicCorrelationToSurface( molecules, elements, TesselStruct, LCList, ranges);
133 else
134 surfacemap = CorrelationToSurface( molecules, elements, TesselStruct, LCList);
135 delete LCList;
136 OutputCorrelationToSurface(&output, surfacemap);
137 // re-set ActiveFlag
138 counter = 0;
139 for (MoleculeList::iterator BigFinder = molecules->ListOfMolecules.begin(); BigFinder != molecules->ListOfMolecules.end(); BigFinder++) {
140 (*BigFinder)->ActiveFlag = Actives[counter++];
141 }
142 delete[] Actives;
143 // check whether radius was appropriate
144 {
145 double start; double end;
146 GetMinMax( surfacemap, start, end);
147 if (LCWidth < end)
148 DoeLog(1) && (eLog()<< Verbose(1) << "Linked Cell width is smaller than the found range of values! Bins can only be correct up to: " << radius << "." << endl);
149 }
150 binmap = BinData( surfacemap, BinWidth, BinStart, BinEnd );
151 OutputCorrelation ( &binoutput, binmap );
152 delete TesselStruct; // surfacemap contains refs to triangles! delete here, not earlier!
153 delete(binmap);
154 delete(surfacemap);
155 } else {
156 return Action::failure;
157 }
158 output.close();
159 binoutput.close();
160 delete dialog;
161 return Action::success;
162 } else {
163 delete dialog;
164 return Action::failure;
165 }
166}
167
168Action::state_ptr AnalysisPairCorrelationAction::performUndo(Action::state_ptr _state) {
169// ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());
170
171 return Action::failure;
172// string newName = state->mol->getName();
173// state->mol->setName(state->lastName);
174//
175// return Action::state_ptr(new ParserLoadXyzState(state->mol,newName));
176}
177
178Action::state_ptr AnalysisPairCorrelationAction::performRedo(Action::state_ptr _state){
179 return Action::failure;
180}
181
182bool AnalysisPairCorrelationAction::canUndo() {
183 return false;
184}
185
186bool AnalysisPairCorrelationAction::shouldUndo() {
187 return false;
188}
189
190const string AnalysisPairCorrelationAction::getName() {
191 return NAME;
192}
Note: See TracBrowser for help on using the repository browser.