- Timestamp:
- Dec 14, 2012, 5:39:42 PM (12 years ago)
- 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:
- 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)
- Location:
- src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FragmentationAction/FragmentationAction.cpp
rd1ba0d rbfbd4a 107 107 } 108 108 109 // we require the current bond graph 109 110 DepthFirstSearchAnalysis DFS; 111 112 // we parse in the keysets from last time if present 113 Graph StoredGraph; 114 StoredGraph.ParseKeySetFile(params.prefix.get()); 115 110 116 start = clock(); 111 117 // go through all keys (i.e. all molecules) … … 134 140 LOG(0, std::endl << " ========== Fragmentation of molecule " << mol->getName() << " ========================= "); 135 141 { 136 const int tempFlag = Fragmenter.FragmentMolecule(mols_atomids, params.order.get(), params.prefix.get(), DFS); 142 Graph StoredLocalGraph(StoredGraph.getLocalGraph(mol)); 143 const int tempFlag = Fragmenter.FragmentMolecule(mols_atomids, params.order.get(), params.prefix.get(), DFS, StoredLocalGraph); 137 144 if ((ExitFlag == 2) && (tempFlag != 2)) 138 145 ExitFlag = tempFlag; // if there is one molecule that needs further fragmentation, it overrides others … … 144 151 } 145 152 LOG(0, "STATUS: There are " << keysetcounter << " fragments."); 153 154 // store keysets to file 155 { 156 TotalGraph.StoreKeySetFile(params.prefix.get()); 157 } 146 158 147 159 // store molecule's fragment to file -
src/Fragmentation/Fragmentation.cpp
rd1ba0d rbfbd4a 101 101 int Order, 102 102 const std::string &prefix, 103 DepthFirstSearchAnalysis &DFS) 103 DepthFirstSearchAnalysis &DFS, 104 const Graph &ParsedFragmentList) 104 105 { 105 106 std::fstream File; … … 139 140 AtomMask.setFalse((*iter)->getNr()); 140 141 } 141 142 // ===== 3. if structure still valid, parse key set file and others =====143 Graph ParsedFragmentList;144 FragmentationToDo = FragmentationToDo && ParsedFragmentList.ParseKeySetFile(prefix);145 142 146 143 // ===== 4. check globally whether there's something to do actually (first adaptivity check) … … 491 488 * \retuen true - success, false - failure 492 489 */ 493 bool Fragmentation::AssignKeySetsToFragment( Graph &KeySetList, ListOfLocalAtoms_t &ListOfLocalAtoms, Graph &FragmentList, bool FreeList)490 bool Fragmentation::AssignKeySetsToFragment(const Graph &KeySetList, ListOfLocalAtoms_t &ListOfLocalAtoms, Graph &FragmentList, bool FreeList) 494 491 { 495 492 Info FunctionInfo(__func__); … … 506 503 // assign scanned keysets 507 504 KeySet TempSet; 508 for (Graph:: iterator runner = KeySetList.begin(); runner != KeySetList.end(); runner++) { // key sets contain global numbers!505 for (Graph::const_iterator runner = KeySetList.begin(); runner != KeySetList.end(); runner++) { // key sets contain global numbers! 509 506 if (ListOfLocalAtoms[mol->FindAtom(*((*runner).first.begin()))->getNr()] != NULL) {// as we may assume that that bond structure is unchanged, we only test the first key in each set 510 507 // translate keyset to local numbers -
src/Fragmentation/Fragmentation.hpp
rd1ba0d rbfbd4a 37 37 ~Fragmentation(); 38 38 39 int FragmentMolecule(const std::vector<atomId_t> &atomids, int Order, const std::string &prefix, DepthFirstSearchAnalysis &DFS );39 int FragmentMolecule(const std::vector<atomId_t> &atomids, int Order, const std::string &prefix, DepthFirstSearchAnalysis &DFS, const Graph &ParsedFragmentList); 40 40 41 41 const Graph& getGraph() const { … … 55 55 // storing fragments 56 56 void FillRootStackForSubgraphs(KeyStack &RootStack, const AtomMask_t &AtomMask); 57 bool AssignKeySetsToFragment( Graph &KeySetList, ListOfLocalAtoms_t &ListOfLocalAtoms, Graph &FragmentList, bool FreeList = false);57 bool AssignKeySetsToFragment(const Graph &KeySetList, ListOfLocalAtoms_t &ListOfLocalAtoms, Graph &FragmentList, bool FreeList = false); 58 58 void TranslateIndicesToGlobalIDs(Graph &FragmentList, int &TotalNumberOfKeySets, Graph &TotalGraph); 59 59 -
src/Fragmentation/Graph.cpp
rd1ba0d rbfbd4a 44 44 #include "CodePatterns/Log.hpp" 45 45 46 #include "Atom/atom.hpp" 47 #include "Descriptors/AtomIdDescriptor.hpp" 46 48 #include "Fragmentation/AdaptivityMap.hpp" 47 49 #include "Helpers/defs.hpp" 48 50 #include "Helpers/helpers.hpp" 51 #include "World.hpp" 49 52 50 53 /** Constructor for class Graph. … … 246 249 return IndexKeySetList; 247 250 }; 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 */ 257 Graph 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 } -
src/Fragmentation/Graph.hpp
rd1ba0d rbfbd4a 23 23 24 24 class AdaptivityMap; 25 class molecule; 25 26 26 27 class Graph : public std::map <KeySet, NumberValuePair > … … 37 38 bool StoreTEFactorsFile(char *path) const; 38 39 40 Graph getLocalGraph(const molecule* mol) const; 41 39 42 AdaptivityMap * GraphToAdaptivityMap() const; 40 43 };
Note:
See TracChangeset
for help on using the changeset viewer.