Ignore:
Timestamp:
Dec 14, 2012, 5:39:42 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, Candidate_v1.7.0, 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:
2dd305
Parents:
d1ba0d
git-author:
Frederik Heber <heber@…> (09/28/12 08:58:39)
git-committer:
Frederik Heber <heber@…> (12/14/12 17:39:42)
Message:

Storing KeySet file with global ids now.

  • We now parse in key set file in FragmentationAction::performCall().
  • new function Graph::getLocalGraph() which sorts out all keysets local to a given molecule.
  • this local graph is passed on to Fragmentation::FragmentMolecule().
  • Fragmentation::AssignKeySetsToFragment() now has const Graph ref as param.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Graph.cpp

    rd1ba0d rbfbd4a  
    4444#include "CodePatterns/Log.hpp"
    4545
     46#include "Atom/atom.hpp"
     47#include "Descriptors/AtomIdDescriptor.hpp"
    4648#include "Fragmentation/AdaptivityMap.hpp"
    4749#include "Helpers/defs.hpp"
    4850#include "Helpers/helpers.hpp"
     51#include "World.hpp"
    4952
    5053/** Constructor for class Graph.
     
    246249  return IndexKeySetList;
    247250};
     251
     252/** For a given molecule, returns each keyset local to this molecule.
     253 *
     254 * @param mol desired molecule
     255 * @return graph with local keysets (local ids!)
     256 */
     257Graph Graph::getLocalGraph(const molecule* mol) const
     258{
     259  Graph LocalGraph;
     260  // go through all key sets, assuming ids are global
     261  for (const_iterator iter = begin(); iter != end(); ++iter) {
     262    // check whether each keyset's GLOBAL id is contained in mol_ids (via conversion through World)
     263    KeySet temp;
     264    for (KeySet::const_iterator keyiter = iter->first.begin();
     265        keyiter != iter->first.end(); ++keyiter) {
     266      const size_t globalid = *keyiter;
     267      const atom *Walker = World::getInstance().getAtom(AtomById(globalid));
     268      if (Walker != NULL) {
     269        if (Walker->getMolecule() != mol) {
     270          break;
     271        } else {
     272          // and store the LOCAL number
     273          const size_t localid = Walker->getNr();
     274          temp.insert(localid);
     275        }
     276      } else {
     277        ELOG(0, "Id " << globalid << " is not associated with any atom.");
     278        break;
     279      }
     280    }
     281    if (temp.size() == iter->first.size()) {
     282      // if so, add to LocalGraph
     283      LocalGraph.insert( std::make_pair(temp, iter->second) );
     284    }
     285  }
     286
     287  return LocalGraph;
     288}
Note: See TracChangeset for help on using the changeset viewer.