Changeset 07a47e for src/Graph


Ignore:
Timestamp:
Oct 26, 2011, 3:02:53 PM (13 years ago)
Author:
Frederik Heber <heber@…>
Branches:
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
Children:
41d023
Parents:
99b0dc
Message:

Replaced enable/disable-hydrogen by internal switch.

Location:
src/Graph
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/Graph/BreadthFirstSearchAdd.cpp

    r99b0dc r07a47e  
    3232
    3333
    34 BreadthFirstSearchAdd::BreadthFirstSearchAdd(atom *&_Root, int _BondOrder, bool _IsAngstroem) :
     34BreadthFirstSearchAdd::BreadthFirstSearchAdd(atom *&_Root, int _BondOrder, bool _IsAngstroem, const enum HydrogenSaturation _saturation) :
    3535  BondOrder(_BondOrder),
    3636  Root(_Root),
     37  saturation(_saturation),
    3738  IsAngstroem(_IsAngstroem)
    3839{
     
    100101        AddedBondList[Binder] = Mol->CopyBond(AddedAtomList[Walker->getNr()], AddedAtomList[OtherAtom->getNr()], Binder);
    101102      } else {
    102 #ifdef ADDHYDROGEN
    103         if (!Mol->AddHydrogenReplacementAtom(Binder, AddedAtomList[Walker->getNr()], Walker, OtherAtom, IsAngstroem))
    104         exit(1);
    105 #endif
     103        if (saturation == DoSaturate)
     104          if (!Mol->AddHydrogenReplacementAtom(Binder, AddedAtomList[Walker->getNr()], Walker, OtherAtom, IsAngstroem))
     105            exit(1);
    106106      }
    107107    }
     
    118118      AddedBondList[Binder] = Mol->CopyBond(AddedAtomList[Walker->getNr()], AddedAtomList[OtherAtom->getNr()], Binder);
    119119    } else { // if it's root bond it has to broken (otherwise we would not create the fragments)
    120 #ifdef ADDHYDROGEN
    121       if(!Mol->AddHydrogenReplacementAtom(Binder, AddedAtomList[Walker->getNr()], Walker, OtherAtom, IsAngstroem))
    122       exit(1);
    123 #endif
     120      if (saturation == DoSaturate)
     121        if(!Mol->AddHydrogenReplacementAtom(Binder, AddedAtomList[Walker->getNr()], Walker, OtherAtom, IsAngstroem))
     122          exit(1);
    124123    }
    125124  }
  • src/Graph/BreadthFirstSearchAdd.hpp

    r99b0dc r07a47e  
    1818
    1919#include "Bond/GraphEdge.hpp"
     20#include "Fragmentation/HydrogenSaturation_enum.hpp"
    2021#include "Helpers/defs.hpp"
    2122#include "types.hpp"
     
    2829{
    2930public:
    30   BreadthFirstSearchAdd(atom *&_Root, int _BondOrder, bool _IsAngstroem);
     31  BreadthFirstSearchAdd(atom *&_Root, int _BondOrder, bool _IsAngstroem, const enum HydrogenSaturation _saturation);
    3132  ~BreadthFirstSearchAdd();
    3233
     
    7172  std::map<bond *, bond *> AddedBondList; //!< maps from father bond to son
    7273
     74  //!> whether to treat hydrogen special or not
     75  const enum HydrogenSaturation saturation;
     76
     77  //!> is angstroem our unit of length
    7378  bool IsAngstroem;
    7479};
  • src/Graph/CyclicStructureAnalysis.cpp

    r99b0dc r07a47e  
    3131#include "molecule.hpp"
    3232
    33 CyclicStructureAnalysis::CyclicStructureAnalysis()
     33CyclicStructureAnalysis::CyclicStructureAnalysis(const enum HydrogenSaturation _saturation) :
     34  saturation(_saturation)
    3435{}
    3536
     
    101102      if ((*Runner) != BackEdge) { // only walk along DFS spanning tree (otherwise we always find SP of one being backedge Binder)
    102103        OtherAtom = (*Runner)->GetOtherAtom(Walker);
    103 #ifdef ADDHYDROGEN
    104         if (OtherAtom->getType()->getAtomicNumber() != 1) {
    105 #endif
    106         LOG(2, "INFO: Current OtherAtom is: " << OtherAtom->getName() << " for bond " << *(*Runner) << "." << endl);
    107         if (ColorList[OtherAtom->getNr()] == GraphEdge::white) {
    108           TouchedStack.push_front(OtherAtom);
    109           ColorList[OtherAtom->getNr()] = GraphEdge::lightgray;
    110           PredecessorList[OtherAtom->getNr()] = Walker; // Walker is the predecessor
    111           ShortestPathList[OtherAtom->getNr()] = ShortestPathList[Walker->getNr()] + 1;
    112           LOG(2, "INFO: Coloring OtherAtom " << OtherAtom->getName() << " lightgray, its predecessor is " << Walker->getName() << " and its Shortest Path is " << ShortestPathList[OtherAtom->getNr()] << " egde(s) long." << endl);
    113           //if (ShortestPathList[OtherAtom->getNr()] < MinimumRingSize[Walker->GetTrueFather()->getNr()]) { // Check for maximum distance
    114           LOG(3, "ACCEPT: Putting OtherAtom into queue." << endl);
    115           BFSStack.push_front(OtherAtom);
    116           //}
     104        if ((saturation == DontSaturate) || (OtherAtom->getType()->getAtomicNumber() != 1)) {
     105          LOG(2, "INFO: Current OtherAtom is: " << OtherAtom->getName() << " for bond " << *(*Runner) << "." << endl);
     106          if (ColorList[OtherAtom->getNr()] == GraphEdge::white) {
     107            TouchedStack.push_front(OtherAtom);
     108            ColorList[OtherAtom->getNr()] = GraphEdge::lightgray;
     109            PredecessorList[OtherAtom->getNr()] = Walker; // Walker is the predecessor
     110            ShortestPathList[OtherAtom->getNr()] = ShortestPathList[Walker->getNr()] + 1;
     111            LOG(2, "INFO: Coloring OtherAtom " << OtherAtom->getName() << " lightgray, its predecessor is " << Walker->getName() << " and its Shortest Path is " << ShortestPathList[OtherAtom->getNr()] << " egde(s) long." << endl);
     112            //if (ShortestPathList[OtherAtom->getNr()] < MinimumRingSize[Walker->GetTrueFather()->getNr()]) { // Check for maximum distance
     113            LOG(3, "ACCEPT: Putting OtherAtom into queue." << endl);
     114            BFSStack.push_front(OtherAtom);
     115            //}
     116          } else {
     117            LOG(3, "REJECT: Not Adding, has already been visited." << endl);
     118          }
     119          if (OtherAtom == Root)
     120            break;
    117121        } else {
    118           LOG(3, "REJECT: Not Adding, has already been visited." << endl);
     122          LOG(2, "INFO: Skipping hydrogen atom " << *OtherAtom << "." << endl);
     123          ColorList[OtherAtom->getNr()] = GraphEdge::black;
    119124        }
    120         if (OtherAtom == Root)
    121           break;
    122 #ifdef ADDHYDROGEN
    123       } else {
    124         LOG(2, "INFO: Skipping hydrogen atom " << *OtherAtom << "." << endl);
    125         ColorList[OtherAtom->getNr()] = GraphEdge::black;
    126       }
    127 #endif
    128125      } else {
    129126        LOG(2, "REJECT: Bond " << *(*Runner) << " not Visiting, is the back edge." << endl);
  • src/Graph/CyclicStructureAnalysis.hpp

    r99b0dc r07a47e  
    1818
    1919#include "Bond/GraphEdge.hpp"
     20#include "Fragmentation/HydrogenSaturation_enum.hpp"
    2021#include "Helpers/defs.hpp"
    2122#include "types.hpp"
     
    2829{
    2930public:
    30   CyclicStructureAnalysis();
     31  explicit CyclicStructureAnalysis(const enum HydrogenSaturation _saturation);
    3132  ~CyclicStructureAnalysis();
    3233
     
    5859  atom *Root;
    5960
     61  //!> whether to treat hydrogen special or not
     62  const enum HydrogenSaturation saturation;
     63
    6064  bool BackStepping;
    6165  int CurrentGraphNr;
Note: See TracChangeset for help on using the changeset viewer.