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

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

Added ifdef HAVE_CONFIG and config.h include to each and every cpp file.

  • is now topmost in front of MemDebug.hpp (and any other).
  • Property mode set to 100644
File size: 3.5 KB
RevLine 
[97ebf8]1/*
2 * DepthFirstSearchAction.cpp
3 *
4 * Created on: May 9, 2010
5 * Author: heber
6 */
7
[bf3817]8// include config.h
9#ifdef HAVE_CONFIG_H
10#include <config.h>
11#endif
12
[112b09]13#include "Helpers/MemDebug.hpp"
14
[97ebf8]15#include "Actions/FragmentationAction/DepthFirstSearchAction.hpp"
[0430e3]16#include "Actions/ActionRegistry.hpp"
[97ebf8]17#include "atom.hpp"
[a3fded]18#include "bondgraph.hpp"
[97ebf8]19#include "config.hpp"
[952f38]20#include "Helpers/Log.hpp"
[97ebf8]21#include "molecule.hpp"
22#include "Descriptors/MoleculeDescriptor.hpp"
23#include "Descriptors/MoleculeIdDescriptor.hpp"
24#include "stackclass.hpp"
[952f38]25#include "Helpers/Verbose.hpp"
[97ebf8]26#include "World.hpp"
27
28#include <iostream>
29#include <string>
30
31using namespace std;
32
33#include "UIElements/UIFactory.hpp"
34#include "UIElements/Dialog.hpp"
[861874]35#include "Actions/ValueStorage.hpp"
[97ebf8]36
37const char FragmentationDepthFirstSearchAction::NAME[] = "depth-first-search";
38
39FragmentationDepthFirstSearchAction::FragmentationDepthFirstSearchAction() :
40 Action(NAME)
41{}
42
43FragmentationDepthFirstSearchAction::~FragmentationDepthFirstSearchAction()
44{}
45
[4ff081]46void FragmentationDepthFirstSearch(double distance) {
47 ValueStorage::getInstance().setCurrentValue(FragmentationDepthFirstSearchAction::NAME, distance);
48 ActionRegistry::getInstance().getActionByName(FragmentationDepthFirstSearchAction::NAME)->call(Action::NonInteractive);
49};
50
[047878]51Dialog* FragmentationDepthFirstSearchAction::fillDialog(Dialog *dialog) {
52 ASSERT(dialog,"No Dialog given when filling action dialog");
[f394a6]53
54 dialog->queryDouble(NAME, ValueStorage::getInstance().getDescription(NAME));
55
56 return dialog;
57}
58
59Action::state_ptr FragmentationDepthFirstSearchAction::performCall() {
[97ebf8]60 double distance;
61
[f394a6]62 ValueStorage::getInstance().queryCurrentValue(NAME, distance);
63
64 DoLog(1) && (Log() << Verbose(1) << "Depth-First-Search Analysis." << endl);
65 molecule * const mol = World::getInstance().getMolecule(MoleculeById(0));
66 MoleculeLeafClass *Subgraphs = NULL; // list of subgraphs from DFS analysis
67 int *MinimumRingSize = new int[mol->getAtomCount()];
68 atom **ListOfAtoms = NULL;
69 class StackClass<bond *> *BackEdgeStack = NULL;
70 class StackClass<bond *> *LocalBackEdgeStack = NULL;
71 mol->CreateAdjacencyList(distance, World::getInstance().getConfig()->GetIsAngstroem(), &BondGraph::CovalentMinMaxDistance, NULL);
72 Subgraphs = mol->DepthFirstSearchAnalysis(BackEdgeStack);
73 if (Subgraphs != NULL) {
74 int FragmentCounter = 0;
75 while (Subgraphs->next != NULL) {
76 Subgraphs = Subgraphs->next;
77 ListOfAtoms = NULL;
78 Subgraphs->FillBondStructureFromReference(mol, ListOfAtoms, false); // we want to keep the created ListOfLocalAtoms
79 LocalBackEdgeStack = new StackClass<bond *> (Subgraphs->Leaf->BondCount);
80 Subgraphs->Leaf->PickLocalBackEdges(ListOfAtoms, BackEdgeStack, LocalBackEdgeStack);
81 Subgraphs->Leaf->CyclicStructureAnalysis(LocalBackEdgeStack, MinimumRingSize);
82 delete(LocalBackEdgeStack);
83 delete(Subgraphs->previous);
84 delete[](ListOfAtoms); // and here we remove it
85 FragmentCounter++;
[97ebf8]86 }
[f394a6]87 delete(Subgraphs);
[97ebf8]88 }
[f394a6]89 delete(BackEdgeStack);
90 delete[](MinimumRingSize);
91 return Action::success;
[97ebf8]92}
93
94Action::state_ptr FragmentationDepthFirstSearchAction::performUndo(Action::state_ptr _state) {
[f394a6]95 return Action::success;
[97ebf8]96}
97
98Action::state_ptr FragmentationDepthFirstSearchAction::performRedo(Action::state_ptr _state){
[f394a6]99 return Action::success;
[97ebf8]100}
101
102bool FragmentationDepthFirstSearchAction::canUndo() {
[f394a6]103 return true;
[97ebf8]104}
105
106bool FragmentationDepthFirstSearchAction::shouldUndo() {
[f394a6]107 return true;
[97ebf8]108}
109
110const string FragmentationDepthFirstSearchAction::getName() {
111 return NAME;
112}
Note: See TracBrowser for help on using the repository browser.