Changeset 8a2398
- Timestamp:
- Sep 1, 2016, 2:11:53 PM (9 years ago)
- Branches:
- Gui_Fixes
- Children:
- 622f71
- Parents:
- 85056e
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FragmentationAction/AnalyseFragmentationResultsAction.cpp
r85056e r8a2398 306 306 const IndexSetContainer::Container_t &Indices = shortrangeresults.getContainer(); 307 307 const IndexSetContainer::Container_t &ForceIndices = ForceContainer->getContainer(); 308 ASSERT( Indices.size() == ForceIndices.size(), 309 "appendToHomologies() - Indices ("+toString(Indices.size()) 310 +") and ForceIndices ("+toString(ForceIndices.size())+") sizes differ."); 308 311 IndexSetContainer::Container_t::const_iterator iter = Indices.begin(); 309 312 IndexSetContainer::Container_t::const_iterator forceiter = ForceIndices.begin(); -
src/Fragmentation/Homology/HomologyGraph_getFromKeyset.cpp
r85056e r8a2398 52 52 // in all the cludder of World, atom, molecule, and so on ... 53 53 54 template <typename S, typename U> 55 void addNodeToMap(S &_map, std::pair< U, size_t> _pair) { 56 std::pair<typename S::iterator,bool> inserter = 57 _map.insert( _pair ); 58 if (!inserter.second) 59 inserter.first->second += _pair.second; 60 } 61 54 62 template <typename T> 55 63 const HomologyGraph::nodes_t getNodesFromSet(const std::set<T> &keyset) … … 69 77 if (keyset.count(OtherWalker->getId())) 70 78 ++NoBonds; 79 else { 80 // add as many bonds as saturation hydrogens 81 NoBonds += (*bonditer)->getDegree(); 82 // add a saturation node for each, too 83 // LOG(1, "DEBUG: Adding saturation node " << *Walker << "."); 84 addNodeToMap(nodes, std::make_pair(FragmentNode(1, 1), (size_t)1) ); 85 } 71 86 } 72 // LOG( 2, "DEBUG: Adding node " << Walker->getId()<< " with element "87 // LOG(1, "DEBUG: Adding node " << *Walker << " with element " 73 88 // << Walker->getElementNo() << " and " << NoBonds << " bonds."); 74 std::pair<HomologyGraph::nodes_t::iterator,bool> inserter = 75 nodes.insert( std::make_pair(FragmentNode(Walker->getElementNo(), NoBonds), (size_t)1) ); 76 if (!inserter.second) 77 inserter.first->second += (size_t)1; 89 addNodeToMap(nodes, std::make_pair(FragmentNode(Walker->getElementNo(), NoBonds), (size_t)1) ); 78 90 } else { 79 91 ELOG(3, "Skipping id " << *iter << ", is not associated with any atom."); … … 97 109 bonditer != ListOfBonds.end(); ++bonditer) { 98 110 const atom * const OtherWalker = (*bonditer)->GetOtherAtom(Walker); 99 // LOG(2, "DEBUG: Neighbor is " << OtherWalker->getId() << "."); 100 if ((keyset.count(OtherWalker->getId())) && (Walker->getId() < OtherWalker->getId())) { 101 // LOG(1, "DEBUG: Adding edge " << Walker->getId() << " and " << OtherWalker->getId() << "."); 102 std::pair<HomologyGraph::edges_t::iterator,bool> inserter = 103 edges.insert( std::make_pair(FragmentEdge( Walker->getElementNo(), OtherWalker->getElementNo()), (size_t)1) ); 104 if (!inserter.second) 105 inserter.first->second += (size_t)1; 111 // LOG(1, "DEBUG: Neighbor is " << OtherWalker->getId() << "."); 112 if (keyset.count(OtherWalker->getId())) { 113 if (Walker->getId() < OtherWalker->getId()) { 114 // LOG(1, "DEBUG: Adding edge " << Walker->getId() << " and " << OtherWalker->getId() << "."); 115 addNodeToMap(edges, std::make_pair(FragmentEdge( Walker->getElementNo(), OtherWalker->getElementNo()), (size_t)1) ); 116 } 117 } else { // also add edge for each saturation hydrogen 118 const size_t bonddegree = (*bonditer)->getDegree(); 119 // LOG(1, "DEBUG: Adding " << bonddegree << " saturation edge(s) " << Walker->getId() << " and " << OtherWalker->getId() << "."); 120 addNodeToMap(edges, std::make_pair(FragmentEdge( Walker->getElementNo(), 1), bonddegree) ); 106 121 } 107 122 }
Note:
See TracChangeset
for help on using the changeset viewer.
