source: src/Actions/FragmentationAction/DepthFirstSearchAction.cpp@ e6317b

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 e6317b was e6317b, checked in by Tillmann Crueger <crueger@…>, 15 years ago

Broken: Merge commit 'Gitosis/stable' into stable

Conflicts:

molecuilder/src/Actions/AnalysisAction/PairCorrelationToPointAction.cpp
molecuilder/src/Actions/AnalysisAction/PairCorrelationToSurfaceAction.cpp
molecuilder/src/Makefile.am

  • Property mode set to 100644
File size: 3.4 KB
Line 
1/*
2 * DepthFirstSearchAction.cpp
3 *
4 * Created on: May 9, 2010
5 * Author: heber
6 */
7
8#include "Helpers/MemDebug.hpp"
9
10#include "Actions/FragmentationAction/DepthFirstSearchAction.hpp"
11#include "atom.hpp"
12#include "config.hpp"
13#include "log.hpp"
14#include "molecule.hpp"
15#include "Descriptors/MoleculeDescriptor.hpp"
16#include "Descriptors/MoleculeIdDescriptor.hpp"
17#include "stackclass.hpp"
18#include "verbose.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 FragmentationDepthFirstSearchAction::NAME[] = "depth-first-search";
31
32FragmentationDepthFirstSearchAction::FragmentationDepthFirstSearchAction() :
33 Action(NAME)
34{}
35
36FragmentationDepthFirstSearchAction::~FragmentationDepthFirstSearchAction()
37{}
38
39Action::state_ptr FragmentationDepthFirstSearchAction::performCall() {
40 Dialog *dialog = UIFactory::getInstance().makeDialog();
41 double distance;
42
43 dialog->queryDouble(NAME, &distance, MapOfActions::getInstance().getDescription(NAME));
44
45 if(dialog->display()) {
46 DoLog(1) && (Log() << Verbose(1) << "Depth-First-Search Analysis." << endl);
47 molecule * const mol = World::getInstance().getMolecule(MoleculeById(0));
48 MoleculeLeafClass *Subgraphs = NULL; // list of subgraphs from DFS analysis
49 int *MinimumRingSize = new int[mol->getAtomCount()];
50 atom ***ListOfLocalAtoms = NULL;
51 class StackClass<bond *> *BackEdgeStack = NULL;
52 class StackClass<bond *> *LocalBackEdgeStack = NULL;
53 mol->CreateAdjacencyList(distance, World::getInstance().getConfig()->GetIsAngstroem(), &BondGraph::CovalentMinMaxDistance, NULL);
54 Subgraphs = mol->DepthFirstSearchAnalysis(BackEdgeStack);
55 if (Subgraphs != NULL) {
56 int FragmentCounter = 0;
57 while (Subgraphs->next != NULL) {
58 Subgraphs = Subgraphs->next;
59 Subgraphs->FillBondStructureFromReference(mol, FragmentCounter, ListOfLocalAtoms, false); // we want to keep the created ListOfLocalAtoms
60 LocalBackEdgeStack = new StackClass<bond *> (Subgraphs->Leaf->BondCount);
61 Subgraphs->Leaf->PickLocalBackEdges(ListOfLocalAtoms[FragmentCounter], BackEdgeStack, LocalBackEdgeStack);
62 Subgraphs->Leaf->CyclicStructureAnalysis(LocalBackEdgeStack, MinimumRingSize);
63 delete(LocalBackEdgeStack);
64 delete(Subgraphs->previous);
65 FragmentCounter++;
66 }
67 delete(Subgraphs);
68 for (int i=0;i<FragmentCounter;i++)
69 delete[](ListOfLocalAtoms[i]);
70 delete[](ListOfLocalAtoms);
71 }
72 delete(BackEdgeStack);
73 delete[](MinimumRingSize);
74 delete dialog;
75 return Action::success;
76 } else {
77 delete dialog;
78 return Action::failure;
79 }
80}
81
82Action::state_ptr FragmentationDepthFirstSearchAction::performUndo(Action::state_ptr _state) {
83// ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());
84
85 return Action::failure;
86// string newName = state->mol->getName();
87// state->mol->setName(state->lastName);
88//
89// return Action::state_ptr(new ParserLoadXyzState(state->mol,newName));
90}
91
92Action::state_ptr FragmentationDepthFirstSearchAction::performRedo(Action::state_ptr _state){
93 return Action::failure;
94}
95
96bool FragmentationDepthFirstSearchAction::canUndo() {
97 return false;
98}
99
100bool FragmentationDepthFirstSearchAction::shouldUndo() {
101 return false;
102}
103
104const string FragmentationDepthFirstSearchAction::getName() {
105 return NAME;
106}
Note: See TracBrowser for help on using the repository browser.