- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Tesselation/CandidateForTesselation.cpp
rb8d215 r052c10 108 108 109 109 if (!pointlist.empty()) 110 LOG(3, "DEBUG: Checking validitywhether 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 ..."); 111 111 else 112 LOG(3, "DEBUG: Checking validitywhether 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 ..."); 113 113 // check baseline for OptCenter and OtherOptCenter being on sphere's surface 114 114 for (list<const Vector *>::const_iterator VRunner = VectorList.begin(); VRunner != VectorList.end(); ++VRunner) { … … 131 131 return false; 132 132 } else { 133 LOG( 4, "DEBUG: Candidate " << *Walker << " is inside by " << distance << ".");133 LOG(3, "DEBUG: Candidate " << *Walker << " is inside by " << distance << "."); 134 134 } 135 135 } 136 136 } 137 137 138 LOG( 3, "DEBUG: Checking validitywhether sphere contains no others points ...");138 LOG(2, "DEBUG: Checking whether sphere contains no others points ..."); 139 139 bool flag = true; 140 140 for (list<const Vector *>::const_iterator VRunner = VectorList.begin(); VRunner != VectorList.end(); ++VRunner) { … … 143 143 144 144 { 145 LOG( 4, "DEBUG: The following atoms are inside sphere at " << (*VRunner) << ":");145 LOG(3, "DEBUG: The following atoms are inside sphere at " << (*VRunner) << ":"); 146 146 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)) << "."); 148 148 } 149 149 150 150 // remove baseline's endpoints and candidates 151 151 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 << "."); 153 153 ListofPoints->remove(BaseLine->endpoints[i]->node); 154 154 } 155 155 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) << "."); 157 157 ListofPoints->remove(*Runner); 158 158 }
Note:
See TracChangeset
for help on using the changeset viewer.