Ignore:
Timestamp:
Aug 20, 2014, 1:04:08 PM (11 years ago)
Author:
Frederik Heber <heber@…>
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)
Message:

Added Logging to SphericalPointDistribution for debugging.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Exporters/SphericalPointDistribution.cpp

    r0d4daf r90426a  
    3939#include "CodePatterns/Assert.hpp"
    4040#include "CodePatterns/IteratorAdaptors.hpp"
     41#include "CodePatterns/Log.hpp"
    4142#include "CodePatterns/toString.hpp"
    4243
     
    102103
    103104  if (_Matching.size() > 1) {
    104     // convert matching into two vectors to calculate distance among another
     105    LOG(3, "INFO: Matching is " << _Matching);
    105106
    106107    // calculate all pair-wise distances
     
    123124      errors.second += gap*gap;
    124125    }
    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 << ".");
    126130
    127131  return errors;
     
    136140  IndexArray_t indices(_matchingindices.begin(), _matchingindices.end());
    137141  std::sort(indices.begin(), indices.end());
     142  LOG(4, "DEBUG: sorted matching is " << indices);
    138143  IndexArray_t::const_iterator valueiter = indices.begin();
    139144  SphericalPointDistribution::Polygon_t::const_iterator pointiter =
     
    146151      remainingpoints.push_back(*pointiter);
    147152  }
     153  LOG(4, "DEBUG: remaining indices are " << remainingpoints);
    148154
    149155  return remainingpoints;
     
    173179      "rotatePolygon() - not exactly "+toString(3)+" angles given.");
    174180  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);
    175182
    176183  // apply rotation angles
     
    205212    unsigned int _matchingsize)
    206213{
     214  LOG(4, "DEBUG: Recursing with current matching " << _matching
     215      << ", remaining indices " << _indices
     216      << ", and sought size " << _matchingsize);
    207217  //!> threshold for L1 error below which matching is immediately acceptable
    208218  const double L1THRESHOLD = 1e-2;
    209219  if (!_MCS.foundflag) {
     220    LOG(3, "INFO: Current matching has size " << _matching.size() << " of " << _matchingsize);
    210221    if (_matching.size() < _matchingsize) {
    211222      // go through all indices
     
    214225        // add index to matching
    215226        _matching.push_back(*iter);
     227        LOG(4, "DEBUG: Adding " << *iter << " to matching.");
    216228        // remove index but keep iterator to position (is the next to erase element)
    217229        IndexList_t::iterator backupiter = _indices.erase(iter);
     
    227239      _MCS.foundflag = true;
    228240    } else {
     241      LOG(3, "INFO: Found matching " << _matching);
    229242      // calculate errors
    230243      std::pair<double, double> errors = calculateErrorOfMatching(
     
    251264  VectorArray_t remainingold(_polygon.begin(), _polygon.end());
    252265  VectorArray_t remainingnew(_newpolygon.begin(), _newpolygon.end());
     266  LOG(3, "INFO: Matching old polygon " << _polygon
     267      << " with new polygon " << _newpolygon);
    253268
    254269  if (_polygon.size() > 0) {
     
    272287      recurseMatchings(MCS, matching, indices, matchingsize);
    273288    }
     289    LOG(3, "INFO: Best matching is " << MCS.bestmatching);
    274290
    275291    // determine rotation angles to align the two point distributions with
     
    288304      oldCenter *= 1./(double)i;
    289305      newCenter *= 1./(double)i;
     306      LOG(3, "INFO: oldCenter is " << oldCenter << ", newCenter is " << newCenter);
    290307
    291308      Vector direction(0.,0.,0.);
     
    304321      }
    305322    }
     323    LOG(3, "INFO: (x,y,z) angles are" << angles);
    306324    const Line RotationAxis(zeroVec, newCenter);
    307325    const double RotationAngle =
    308326        newCenter.Angle(remainingold[0])
    309327        - newCenter.Angle(remainingnew[*MCS.bestmatching.begin()]);
     328    LOG(3, "INFO: Rotate around self is " << RotationAngle
     329        << " around axis " << RotationAxis);
    310330
    311331    // rotate _newpolygon
    312332    SphericalPointDistribution::Polygon_t rotated_newpolygon =
    313333        rotatePolygon(_newpolygon, angles, RotationAxis, RotationAngle);
     334    LOG(3, "INFO: Rotated new polygon is " << rotated_newpolygon);
    314335
    315336    // remove all points in matching and return remaining ones
     
    320341
    321342
    322 
Note: See TracChangeset for help on using the changeset viewer.