Changeset 90426a for src/Fragmentation/Exporters
- Timestamp:
- Aug 20, 2014, 1:04:08 PM (11 years ago)
- Children:
- 0d5ca7
- Parents:
- 0d4daf
- git-author:
- Frederik Heber <heber@…> (05/30/14 13:06:25)
- git-committer:
- Frederik Heber <heber@…> (08/20/14 13:04:08)
- Location:
- src/Fragmentation/Exporters
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/Exporters/SaturatedFragment.cpp
r0d4daf r90426a 201 201 Polygon.push_back( DistanceVector ); 202 202 } 203 LOG(3, "DEBUG: Polygon of atom " << _atom << " to saturate is " << Polygon); 203 204 204 205 // get the new number of bonds (where all cut bonds are replaced by as … … 217 218 // NumberOfPoints -= (*BondRunner)->getDegree() - 1; 218 219 } 220 LOG(3, "DEBUG: There are " << NumberOfPoints 221 << " to fill in in total for this atom " << _atom << "."); 219 222 220 223 // get perfect node distribution for the given remaining atoms with respect … … 270 273 +toString(NumberOfPoints)+"."); 271 274 } 275 LOG(3, "DEBUG: Possible Polygon is " << NewPolygon); 272 276 273 277 // then we need to match the old with the new 274 278 SphericalPointDistribution::Polygon_t RemainingPoints = 275 279 SphericalPointDistribution::matchSphericalPointDistributions(Polygon, NewPolygon); 280 281 LOG(3, "INFO: Points identified to fill are " << RemainingPoints); 276 282 277 283 // and place hydrogen atoms at each vacant spot in the distance given by the table … … 280 286 // find nearest atom as father to this point 281 287 atom * const _father = _atom; 288 LOG(4, "DEBUG: Filling saturation hydrogen for atom " << _atom << " at " << *iter); 282 289 setHydrogenReplacement( 283 290 _atom, -
src/Fragmentation/Exporters/SphericalPointDistribution.cpp
r0d4daf r90426a 39 39 #include "CodePatterns/Assert.hpp" 40 40 #include "CodePatterns/IteratorAdaptors.hpp" 41 #include "CodePatterns/Log.hpp" 41 42 #include "CodePatterns/toString.hpp" 42 43 … … 102 103 103 104 if (_Matching.size() > 1) { 104 // convert matching into two vectors to calculate distance among another105 LOG(3, "INFO: Matching is " << _Matching); 105 106 106 107 // calculate all pair-wise distances … … 123 124 errors.second += gap*gap; 124 125 } 125 } 126 } else 127 ELOG(2, "calculateErrorOfMatching() - Given matching is empty."); 128 LOG(3, "INFO: Resulting errors for matching (L1, L2): " 129 << errors.first << "," << errors.second << "."); 126 130 127 131 return errors; … … 136 140 IndexArray_t indices(_matchingindices.begin(), _matchingindices.end()); 137 141 std::sort(indices.begin(), indices.end()); 142 LOG(4, "DEBUG: sorted matching is " << indices); 138 143 IndexArray_t::const_iterator valueiter = indices.begin(); 139 144 SphericalPointDistribution::Polygon_t::const_iterator pointiter = … … 146 151 remainingpoints.push_back(*pointiter); 147 152 } 153 LOG(4, "DEBUG: remaining indices are " << remainingpoints); 148 154 149 155 return remainingpoints; … … 173 179 "rotatePolygon() - not exactly "+toString(3)+" angles given."); 174 180 rotation.setRotation(_angles[0] * M_PI/180., _angles[1] * M_PI/180., _angles[2] * M_PI/180.); 181 LOG(4, "DEBUG: Rotation matrix is " << rotation); 175 182 176 183 // apply rotation angles … … 205 212 unsigned int _matchingsize) 206 213 { 214 LOG(4, "DEBUG: Recursing with current matching " << _matching 215 << ", remaining indices " << _indices 216 << ", and sought size " << _matchingsize); 207 217 //!> threshold for L1 error below which matching is immediately acceptable 208 218 const double L1THRESHOLD = 1e-2; 209 219 if (!_MCS.foundflag) { 220 LOG(3, "INFO: Current matching has size " << _matching.size() << " of " << _matchingsize); 210 221 if (_matching.size() < _matchingsize) { 211 222 // go through all indices … … 214 225 // add index to matching 215 226 _matching.push_back(*iter); 227 LOG(4, "DEBUG: Adding " << *iter << " to matching."); 216 228 // remove index but keep iterator to position (is the next to erase element) 217 229 IndexList_t::iterator backupiter = _indices.erase(iter); … … 227 239 _MCS.foundflag = true; 228 240 } else { 241 LOG(3, "INFO: Found matching " << _matching); 229 242 // calculate errors 230 243 std::pair<double, double> errors = calculateErrorOfMatching( … … 251 264 VectorArray_t remainingold(_polygon.begin(), _polygon.end()); 252 265 VectorArray_t remainingnew(_newpolygon.begin(), _newpolygon.end()); 266 LOG(3, "INFO: Matching old polygon " << _polygon 267 << " with new polygon " << _newpolygon); 253 268 254 269 if (_polygon.size() > 0) { … … 272 287 recurseMatchings(MCS, matching, indices, matchingsize); 273 288 } 289 LOG(3, "INFO: Best matching is " << MCS.bestmatching); 274 290 275 291 // determine rotation angles to align the two point distributions with … … 288 304 oldCenter *= 1./(double)i; 289 305 newCenter *= 1./(double)i; 306 LOG(3, "INFO: oldCenter is " << oldCenter << ", newCenter is " << newCenter); 290 307 291 308 Vector direction(0.,0.,0.); … … 304 321 } 305 322 } 323 LOG(3, "INFO: (x,y,z) angles are" << angles); 306 324 const Line RotationAxis(zeroVec, newCenter); 307 325 const double RotationAngle = 308 326 newCenter.Angle(remainingold[0]) 309 327 - newCenter.Angle(remainingnew[*MCS.bestmatching.begin()]); 328 LOG(3, "INFO: Rotate around self is " << RotationAngle 329 << " around axis " << RotationAxis); 310 330 311 331 // rotate _newpolygon 312 332 SphericalPointDistribution::Polygon_t rotated_newpolygon = 313 333 rotatePolygon(_newpolygon, angles, RotationAxis, RotationAngle); 334 LOG(3, "INFO: Rotated new polygon is " << rotated_newpolygon); 314 335 315 336 // remove all points in matching and return remaining ones … … 320 341 321 342 322 -
src/Fragmentation/Exporters/SphericalPointDistribution.hpp
r0d4daf r90426a 81 81 ); 82 82 83 84 83 //!> default radius of the spherical distribution 85 84 const double Bondlength;
Note:
See TracChangeset
for help on using the changeset viewer.