source: src/Actions/FragmentationAction/DepthFirstSearchAction.cpp@ 8f4df1

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 8f4df1 was 952f38, checked in by Frederik Heber <heber@…>, 14 years ago

created LibMolecuilderHelpers.

  • is shared
  • renamed log.[ch]pp -> Log.[ch]pp
  • renamed verbose.[ch]pp -> Verbose.[ch]pp
  • renamed info.[ch]pp -> Info.[ch]pp
  • contains: Assert, MemDebug, Log, logger, errorlogger, Verbose, Info
  • had to change includes practically everywhere.
  • 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 "Actions/ActionRegistry.hpp"
12#include "atom.hpp"
13#include "bondgraph.hpp"
14#include "config.hpp"
15#include "Helpers/Log.hpp"
16#include "molecule.hpp"
17#include "Descriptors/MoleculeDescriptor.hpp"
18#include "Descriptors/MoleculeIdDescriptor.hpp"
19#include "stackclass.hpp"
20#include "Helpers/Verbose.hpp"
21#include "World.hpp"
22
23#include <iostream>
24#include <string>
25
26using namespace std;
27
28#include "UIElements/UIFactory.hpp"
29#include "UIElements/Dialog.hpp"
30#include "Actions/ValueStorage.hpp"
31
32const char FragmentationDepthFirstSearchAction::NAME[] = "depth-first-search";
33
34FragmentationDepthFirstSearchAction::FragmentationDepthFirstSearchAction() :
35 Action(NAME)
36{}
37
38FragmentationDepthFirstSearchAction::~FragmentationDepthFirstSearchAction()
39{}
40
41void FragmentationDepthFirstSearch(double distance) {
42 ValueStorage::getInstance().setCurrentValue(FragmentationDepthFirstSearchAction::NAME, distance);
43 ActionRegistry::getInstance().getActionByName(FragmentationDepthFirstSearchAction::NAME)->call(Action::NonInteractive);
44};
45
46Dialog* FragmentationDepthFirstSearchAction::fillDialog(Dialog *dialog) {
47 ASSERT(dialog,"No Dialog given when filling action dialog");
48
49 dialog->queryDouble(NAME, ValueStorage::getInstance().getDescription(NAME));
50
51 return dialog;
52}
53
54Action::state_ptr FragmentationDepthFirstSearchAction::performCall() {
55 double distance;
56
57 ValueStorage::getInstance().queryCurrentValue(NAME, distance);
58
59 DoLog(1) && (Log() << Verbose(1) << "Depth-First-Search Analysis." << endl);
60 molecule * const mol = World::getInstance().getMolecule(MoleculeById(0));
61 MoleculeLeafClass *Subgraphs = NULL; // list of subgraphs from DFS analysis
62 int *MinimumRingSize = new int[mol->getAtomCount()];
63 atom **ListOfAtoms = NULL;
64 class StackClass<bond *> *BackEdgeStack = NULL;
65 class StackClass<bond *> *LocalBackEdgeStack = NULL;
66 mol->CreateAdjacencyList(distance, World::getInstance().getConfig()->GetIsAngstroem(), &BondGraph::CovalentMinMaxDistance, NULL);
67 Subgraphs = mol->DepthFirstSearchAnalysis(BackEdgeStack);
68 if (Subgraphs != NULL) {
69 int FragmentCounter = 0;
70 while (Subgraphs->next != NULL) {
71 Subgraphs = Subgraphs->next;
72 ListOfAtoms = NULL;
73 Subgraphs->FillBondStructureFromReference(mol, ListOfAtoms, false); // we want to keep the created ListOfLocalAtoms
74 LocalBackEdgeStack = new StackClass<bond *> (Subgraphs->Leaf->BondCount);
75 Subgraphs->Leaf->PickLocalBackEdges(ListOfAtoms, BackEdgeStack, LocalBackEdgeStack);
76 Subgraphs->Leaf->CyclicStructureAnalysis(LocalBackEdgeStack, MinimumRingSize);
77 delete(LocalBackEdgeStack);
78 delete(Subgraphs->previous);
79 delete[](ListOfAtoms); // and here we remove it
80 FragmentCounter++;
81 }
82 delete(Subgraphs);
83 }
84 delete(BackEdgeStack);
85 delete[](MinimumRingSize);
86 return Action::success;
87}
88
89Action::state_ptr FragmentationDepthFirstSearchAction::performUndo(Action::state_ptr _state) {
90 return Action::success;
91}
92
93Action::state_ptr FragmentationDepthFirstSearchAction::performRedo(Action::state_ptr _state){
94 return Action::success;
95}
96
97bool FragmentationDepthFirstSearchAction::canUndo() {
98 return true;
99}
100
101bool FragmentationDepthFirstSearchAction::shouldUndo() {
102 return true;
103}
104
105const string FragmentationDepthFirstSearchAction::getName() {
106 return NAME;
107}
Note: See TracBrowser for help on using the repository browser.