Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Tesselation/CandidateForTesselation.cpp

    rb8d215 r052c10  
    108108
    109109  if (!pointlist.empty())
    110     LOG(3, "DEBUG: Checking validity whether sphere contains candidate list and baseline " << *BaseLine->endpoints[0] << "<->" << *BaseLine->endpoints[1] << " only ...");
     110    LOG(3, "DEBUG: Checking whether sphere contains candidate list and baseline " << *BaseLine->endpoints[0] << "<->" << *BaseLine->endpoints[1] << " only ...");
    111111  else
    112     LOG(3, "DEBUG: Checking validity whether sphere with no candidates contains baseline " << *BaseLine->endpoints[0] << "<->" << *BaseLine->endpoints[1] << " only ...");
     112    LOG(3, "DEBUG: Checking whether sphere with no candidates contains baseline " << *BaseLine->endpoints[0] << "<->" << *BaseLine->endpoints[1] << " only ...");
    113113  // check baseline for OptCenter and OtherOptCenter being on sphere's surface
    114114  for (list<const Vector *>::const_iterator VRunner = VectorList.begin(); VRunner != VectorList.end(); ++VRunner) {
     
    131131        return false;
    132132      } else {
    133         LOG(4, "DEBUG: Candidate " << *Walker << " is inside by " << distance << ".");
     133        LOG(3, "DEBUG: Candidate " << *Walker << " is inside by " << distance << ".");
    134134      }
    135135    }
    136136  }
    137137
    138   LOG(3, "DEBUG: Checking validity whether sphere contains no others points ...");
     138  LOG(2, "DEBUG: Checking whether sphere contains no others points ...");
    139139  bool flag = true;
    140140  for (list<const Vector *>::const_iterator VRunner = VectorList.begin(); VRunner != VectorList.end(); ++VRunner) {
     
    143143
    144144    {
    145       LOG(4, "DEBUG: The following atoms are inside sphere at " << (*VRunner) << ":");
     145      LOG(3, "DEBUG: The following atoms are inside sphere at " << (*VRunner) << ":");
    146146      for (TesselPointList::const_iterator Runner = ListofPoints->begin(); Runner != ListofPoints->end(); ++Runner)
    147         LOG(4, "DEBUG:  " << *(*Runner) << " with distance " << (*Runner)->distance(*(*VRunner)) << ".");
     147        LOG(3, "DEBUG:  " << *(*Runner) << " with distance " << (*Runner)->distance(*(*VRunner)) << ".");
    148148    }
    149149
    150150    // remove baseline's endpoints and candidates
    151151    for (int i = 0; i < 2; i++) {
    152       LOG(5, "DEBUG: removing baseline tesselpoint " << *BaseLine->endpoints[i]->node << ".");
     152      LOG(3, "DEBUG: removing baseline tesselpoint " << *BaseLine->endpoints[i]->node << ".");
    153153      ListofPoints->remove(BaseLine->endpoints[i]->node);
    154154    }
    155155    for (TesselPointList::const_iterator Runner = pointlist.begin(); Runner != pointlist.end(); ++Runner) {
    156       LOG(5, "DEBUG: removing candidate tesselpoint " << *(*Runner) << ".");
     156      LOG(3, "DEBUG: removing candidate tesselpoint " << *(*Runner) << ".");
    157157      ListofPoints->remove(*Runner);
    158158    }
Note: See TracChangeset for help on using the changeset viewer.