Changeset ce7bfd for src/Tesselation
- Timestamp:
- Apr 4, 2012, 11:30:11 AM (13 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 03a589
- Parents:
- 2a3124
- git-author:
- Frederik Heber <heber@…> (03/13/12 19:35:15)
- git-committer:
- Frederik Heber <heber@…> (04/04/12 11:30:11)
- Location:
- src/Tesselation
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Tesselation/BoundaryLineSet.cpp
r2a3124 rce7bfd 42 42 Nr(-1) 43 43 { 44 Info FunctionInfo(__func__);44 //Info FunctionInfo(__func__); 45 45 for (int i = 0; i < 2; i++) 46 46 endpoints[i] = NULL; … … 55 55 BoundaryLineSet::BoundaryLineSet(BoundaryPointSet * const Point[2], const int number) 56 56 { 57 Info FunctionInfo(__func__);57 //Info FunctionInfo(__func__); 58 58 // set number 59 59 Nr = number; … … 66 66 skipped = false; 67 67 // clear triangles list 68 LOG( 0, "New Line with endpoints " << *this << ".");68 LOG(5, "DEBUG: New Line with endpoints " << *this << "."); 69 69 } 70 70 ; … … 80 80 skipped(false) 81 81 { 82 Info FunctionInfo(__func__);82 //Info FunctionInfo(__func__); 83 83 // set endpoints in ascending order 84 84 SetEndpointsOrdered(endpoints, Point1, Point2); … … 87 87 Point2->AddLine(this); // 88 88 // clear triangles list 89 LOG( 0, "New Line with endpoints " << *this << ".");89 LOG(5, "DEBUG: New Line with endpoints " << *this << "."); 90 90 } 91 91 ; … … 97 97 BoundaryLineSet::~BoundaryLineSet() 98 98 { 99 Info FunctionInfo(__func__);99 //Info FunctionInfo(__func__); 100 100 int Numbers[2]; 101 101 … … 144 144 void BoundaryLineSet::AddTriangle(BoundaryTriangleSet * const triangle) 145 145 { 146 Info FunctionInfo(__func__);147 LOG( 0, "Add " << triangle->Nr << " to line " << *this << ".");146 //Info FunctionInfo(__func__); 147 LOG(5, "DEBUG: Add " << triangle->Nr << " to line " << *this << "."); 148 148 triangles.insert(TrianglePair(triangle->Nr, triangle)); 149 149 } … … 156 156 bool BoundaryLineSet::IsConnectedTo(const BoundaryLineSet * const line) const 157 157 { 158 Info FunctionInfo(__func__);158 //Info FunctionInfo(__func__); 159 159 if ((endpoints[0] == line->endpoints[0]) || (endpoints[1] == line->endpoints[0]) || (endpoints[0] == line->endpoints[1]) || (endpoints[1] == line->endpoints[1])) 160 160 return true; … … 172 172 bool BoundaryLineSet::CheckConvexityCriterion() const 173 173 { 174 Info FunctionInfo(__func__);174 //Info FunctionInfo(__func__); 175 175 double angle = CalculateConvexity(); 176 176 if (angle > -MYEPSILON) { 177 LOG( 0, "ACCEPT: Angle is greater than pi: convex.");177 LOG(3, "ACCEPT: Angle is greater than pi: convex."); 178 178 return true; 179 179 } else { 180 LOG( 0, "REJECT: Angle is less than pi: concave.");180 LOG(3, "REJECT: Angle is less than pi: concave."); 181 181 return false; 182 182 } … … 190 190 double BoundaryLineSet::CalculateConvexity() const 191 191 { 192 Info FunctionInfo(__func__);192 //Info FunctionInfo(__func__); 193 193 Vector BaseLineCenter, BaseLineNormal, BaseLine, helper[2], NormalCheck; 194 194 // get the two triangles … … 234 234 //LOG(0, "INFO: BaselineNormal is " << BaseLineNormal << "."); 235 235 if (NormalCheck.NormSquared() < MYEPSILON) { 236 LOG( 0, "ACCEPT: Normalvectors of both triangles are the same: convex.");236 LOG(3, "ACCEPT: Normalvectors of both triangles are the same: convex."); 237 237 return true; 238 238 } … … 248 248 bool BoundaryLineSet::ContainsBoundaryPoint(const BoundaryPointSet * const point) const 249 249 { 250 Info FunctionInfo(__func__);250 //Info FunctionInfo(__func__); 251 251 for (int i = 0; i < 2; i++) 252 252 if (point == endpoints[i]) … … 262 262 class BoundaryPointSet *BoundaryLineSet::GetOtherEndpoint(const BoundaryPointSet * const point) const 263 263 { 264 Info FunctionInfo(__func__);264 //Info FunctionInfo(__func__); 265 265 if (endpoints[0] == point) 266 266 return endpoints[1]; … … 278 278 class BoundaryTriangleSet *BoundaryLineSet::GetOtherTriangle(const BoundaryTriangleSet * const triangle) const 279 279 { 280 Info FunctionInfo(__func__);280 //Info FunctionInfo(__func__); 281 281 if (triangles.size() == 2) { 282 282 for (TriangleMap::const_iterator TriangleRunner = triangles.begin(); TriangleRunner != triangles.end(); ++TriangleRunner) -
src/Tesselation/BoundaryPointSet.cpp
r2a3124 rce7bfd 45 45 Nr(-1) 46 46 { 47 Info FunctionInfo(__func__);47 //Info FunctionInfo(__func__); 48 48 LOG(1, "Adding noname."); 49 49 } … … 59 59 Nr(Walker->getNr()) 60 60 { 61 Info FunctionInfo(__func__);62 LOG( 1, "Adding Node " << *Walker);61 //Info FunctionInfo(__func__); 62 LOG(5, "DEBUG: Adding Node " << *Walker); 63 63 } 64 64 ; … … 70 70 BoundaryPointSet::~BoundaryPointSet() 71 71 { 72 Info FunctionInfo(__func__);72 //Info FunctionInfo(__func__); 73 73 //LOG(0, "Erasing point Nr. " << Nr << "."); 74 74 if (!lines.empty()) … … 83 83 void BoundaryPointSet::AddLine(BoundaryLineSet * const line) 84 84 { 85 Info FunctionInfo(__func__);86 LOG( 1, "Adding " << *this << " to line " << *line << ".");85 //Info FunctionInfo(__func__); 86 LOG(5, "DEBUG: Adding " << *this << " to line " << *line << "."); 87 87 if (line->endpoints[0] == this) { 88 88 lines.insert(LinePair(line->endpoints[1]->Nr, line)); -
src/Tesselation/BoundaryPolygonSet.cpp
r2a3124 rce7bfd 44 44 Nr(-1) 45 45 { 46 Info FunctionInfo(__func__);46 //Info FunctionInfo(__func__); 47 47 } 48 48 ; … … 54 54 BoundaryPolygonSet::~BoundaryPolygonSet() 55 55 { 56 Info FunctionInfo(__func__);56 //Info FunctionInfo(__func__); 57 57 endpoints.clear(); 58 LOG( 1, "Erasing polygon Nr." << Nr << " itself.");58 LOG(5, "DEBUG: Erasing polygon Nr." << Nr << " itself."); 59 59 } 60 60 ; … … 67 67 Vector * BoundaryPolygonSet::GetNormalVector(const Vector &OtherVector) const 68 68 { 69 Info FunctionInfo(__func__);69 //Info FunctionInfo(__func__); 70 70 // get normal vector 71 71 Vector TemporaryNormal; … … 97 97 if (TotalNormal->ScalarProduct(OtherVector) > 0.) 98 98 TotalNormal->Scale(-1.); 99 LOG( 1, "Normal Vector is " << *TotalNormal << ".");99 LOG(4, "DEBUG: Normal Vector is " << *TotalNormal << "."); 100 100 101 101 return TotalNormal; … … 109 109 void BoundaryPolygonSet::GetCenter(Vector * const center) const 110 110 { 111 Info FunctionInfo(__func__);111 //Info FunctionInfo(__func__); 112 112 center->Zero(); 113 113 int counter = 0; … … 117 117 } 118 118 center->Scale(1. / (double) counter); 119 LOG( 1, "Centeris at " << *center << ".");119 LOG(4, "DEBUG: Center of BoundaryPolygonSet is at " << *center << "."); 120 120 } 121 121 … … 126 126 bool BoundaryPolygonSet::ContainsBoundaryTriangle(const BoundaryTriangleSet * const triangle) const 127 127 { 128 Info FunctionInfo(__func__);128 //Info FunctionInfo(__func__); 129 129 return ContainsPresentTupel(triangle->endpoints, 3); 130 130 } … … 137 137 bool BoundaryPolygonSet::ContainsBoundaryLine(const BoundaryLineSet * const line) const 138 138 { 139 Info FunctionInfo(__func__);139 //Info FunctionInfo(__func__); 140 140 return ContainsPresentTupel(line->endpoints, 2); 141 141 } … … 148 148 bool BoundaryPolygonSet::ContainsBoundaryPoint(const BoundaryPointSet * const point) const 149 149 { 150 Info FunctionInfo(__func__);150 //Info FunctionInfo(__func__); 151 151 for (PointSet::const_iterator Runner = endpoints.begin(); Runner != endpoints.end(); Runner++) { 152 LOG(0, "Checking against " << **Runner);153 152 if (point == (*Runner)) { 154 LOG( 0, "Contained.");153 LOG(4, "DEBUG: Checking against " << **Runner << ": Contained."); 155 154 return true; 156 155 } 157 156 } 158 LOG(0, " Not contained.");159 157 return false; 160 158 } … … 167 165 bool BoundaryPolygonSet::ContainsBoundaryPoint(const TesselPoint * const point) const 168 166 { 169 Info FunctionInfo(__func__);167 //Info FunctionInfo(__func__); 170 168 for (PointSet::const_iterator Runner = endpoints.begin(); Runner != endpoints.end(); Runner++) 171 169 if (point == (*Runner)->node) { 172 LOG( 0, "Contained.");170 LOG(4, "DEBUG: Checking against " << **Runner << ": Contained."); 173 171 return true; 174 172 } 175 LOG(0, " Not contained.");176 173 return false; 177 174 } … … 185 182 bool BoundaryPolygonSet::ContainsPresentTupel(const BoundaryPointSet * const * Points, const int dim) const 186 183 { 187 Info FunctionInfo(__func__);184 //Info FunctionInfo(__func__); 188 185 int counter = 0; 189 LOG( 1, "Polygon is " << *this);186 LOG(5, "DEBUG Polygon is " << *this); 190 187 for (int i = 0; i < dim; i++) { 191 LOG( 1, "Testing endpoint " << *Points[i]);188 LOG(5, "DEBUG: Testing endpoint " << *Points[i]); 192 189 if (ContainsBoundaryPoint(Points[i])) { 193 190 counter++; … … 208 205 bool BoundaryPolygonSet::ContainsPresentTupel(const PointSet &endpoints) const 209 206 { 210 Info FunctionInfo(__func__);207 //Info FunctionInfo(__func__); 211 208 size_t counter = 0; 212 LOG( 1, "Polygon is " << *this);209 LOG(5, "DEBUG: Polygon is " << *this); 213 210 for (PointSet::const_iterator Runner = endpoints.begin(); Runner != endpoints.end(); Runner++) { 214 LOG( 1, "Testing endpoint " << **Runner);211 LOG(5, "DEBUG: Testing endpoint " << **Runner); 215 212 if (ContainsBoundaryPoint(*Runner)) 216 213 counter++; … … 239 236 TriangleSet * BoundaryPolygonSet::GetAllContainedTrianglesFromEndpoints() const 240 237 { 241 Info FunctionInfo(__func__);238 //Info FunctionInfo(__func__); 242 239 pair<TriangleSet::iterator, bool> Tester; 243 240 TriangleSet *triangles = new TriangleSet; … … 250 247 Tester = triangles->insert(Sprinter->second); 251 248 if (Tester.second) 252 LOG( 0, "Adding triangle " << *(Sprinter->second));249 LOG(4, "DEBUG: Adding triangle " << *(Sprinter->second)); 253 250 } 254 251 } 255 252 256 LOG( 1, "The Polygon of " << endpoints.size() << " endpoints has " << triangles->size() << " unique triangles in total.");253 LOG(3, "DEBUG: The Polygon of " << endpoints.size() << " endpoints has " << triangles->size() << " unique triangles in total."); 257 254 return triangles; 258 255 } … … 265 262 bool BoundaryPolygonSet::FillPolygonFromTrianglesOfLine(const BoundaryLineSet * const line) 266 263 { 267 Info FunctionInfo(__func__);264 //Info FunctionInfo(__func__); 268 265 pair<PointSet::iterator, bool> Tester; 269 266 if (line == NULL) 270 267 return false; 271 LOG( 1, "Filling polygon from line " << *line);268 LOG(3, "DEBUG: Filling polygon from line " << *line); 272 269 for (TriangleMap::const_iterator Runner = line->triangles.begin(); Runner != line->triangles.end(); Runner++) { 273 270 for (int i = 0; i < 3; i++) { 274 271 Tester = endpoints.insert((Runner->second)->endpoints[i]); 275 272 if (Tester.second) 276 LOG( 1, "Inserting endpoint " << *((Runner->second)->endpoints[i]));273 LOG(4, "DEBUG: Inserting endpoint " << *((Runner->second)->endpoints[i])); 277 274 } 278 275 } -
src/Tesselation/BoundaryTriangleSet.cpp
r2a3124 rce7bfd 79 79 // set endpoints 80 80 int Counter = 0; 81 LOG( 0, "New triangle " << Nr << " with end points: ");81 LOG(4, "DEBUG: New triangle " << Nr << " with end points: "); 82 82 for (PointMap::iterator runner = OrderMap.begin(); runner != OrderMap.end(); runner++) { 83 83 endpoints[Counter] = runner->second; 84 LOG( 0, "" << *endpoints[Counter]);84 LOG(4, "DEBUG: " << *endpoints[Counter]); 85 85 Counter++; 86 86 } … … 99 99 if (lines[i] != NULL) { 100 100 if (lines[i]->triangles.erase(Nr)) { 101 //LOG( 0, "Triangle Nr." << Nr << " erased in line " << *lines[i] << ".");101 //LOG(5, "DEBUG: Triangle Nr." << Nr << " erased in line " << *lines[i] << "."); 102 102 } 103 103 if (lines[i]->triangles.empty()) { 104 //LOG( 0,*lines[i] << " is no more attached to any triangle, erasing.");104 //LOG(5, "DEBUG: " << *lines[i] << " is no more attached to any triangle, erasing."); 105 105 delete (lines[i]); 106 106 lines[i] = NULL; … … 108 108 } 109 109 } 110 //LOG( 0, "Erasing triangle Nr." << Nr << " itself.");110 //LOG(5, "DEBUG: Erasing triangle Nr." << Nr << " itself."); 111 111 } 112 112 ; … … 144 144 if (NormalVector.ScalarProduct(OtherVector) > 0.) 145 145 NormalVector.Scale(-1.); 146 LOG( 1, "Normal Vectoris " << NormalVector << ".");146 LOG(4, "DEBUG: Normal Vector of " << *this << " is " << NormalVector << "."); 147 147 } 148 148 ; … … 171 171 Intersection = Plane(NormalVector, (endpoints[0]->node->getPosition())).GetIntersection(centerLine); 172 172 173 LOG( 1, "INFO: Triangle is " << *this << ".");174 LOG( 1, "INFO: Line is from " << MolCenter << " to " << x << ".");175 LOG( 1, "INFO: Intersection is " << Intersection << ".");173 LOG(4, "DEBUG: Triangle is " << *this << "."); 174 LOG(4, "DEBUG: Line is from " << MolCenter << " to " << x << "."); 175 LOG(4, "DEBUG: Intersection is " << Intersection << "."); 176 176 177 177 if (Intersection.DistanceSquared(endpoints[0]->node->getPosition()) < MYEPSILON) { 178 LOG( 1, "Intersection coindices with first endpoint.");178 LOG(4, "DEBUG: Intersection coindices with first endpoint."); 179 179 return true; 180 180 } else if (Intersection.DistanceSquared(endpoints[1]->node->getPosition()) < MYEPSILON) { 181 LOG( 1, "Intersection coindices with second endpoint.");181 LOG(4, "DEBUG: Intersection coindices with second endpoint."); 182 182 return true; 183 183 } else if (Intersection.DistanceSquared(endpoints[2]->node->getPosition()) < MYEPSILON) { 184 LOG( 1, "Intersection coindices with third endpoint.");184 LOG(4, "DEBUG: Intersection coindices with third endpoint."); 185 185 return true; 186 186 } … … 194 194 CrossPoint -= (endpoints[i%3]->node->getPosition()); // cross point was returned as absolute vector 195 195 const double s = CrossPoint.ScalarProduct(helper)/helper.NormSquared(); 196 LOG( 1, "INFO: Factor s is " << s << ".");196 LOG(4, "DEBUG: Factor s is " << s << "."); 197 197 if ((s < -MYEPSILON) || ((s-1.) > MYEPSILON)) { 198 LOG( 1, "INFO: Crosspoint " << CrossPoint << "outside of triangle.");198 LOG(4, "DEBUG: Crosspoint " << CrossPoint << "outside of triangle."); 199 199 return false; 200 200 } 201 201 i++; 202 202 } while (i < 3); 203 LOG( 1, "INFO: Crosspoint " << CrossPoint << " inside of triangle.");203 LOG(4, "DEBUG: Crosspoint " << CrossPoint << " inside of triangle."); 204 204 return true; 205 205 } … … 230 230 Vector Direction; 231 231 232 // 1. get intersection with plane and place in ClosestPoint233 LOG( 1, "INFO: Looking for closest point of triangle " << *this << " to " << x << ".");234 LOG( 1, "INFO: endpoints are " << endpoints[0]->node->getPosition() << ","232 // 1. get intersection with plane 233 LOG(3, "DEBUG: Looking for closest point of triangle " << *this << " to " << x << "."); 234 LOG(3, "DEBUG: endpoints are " << endpoints[0]->node->getPosition() << "," 235 235 << endpoints[1]->node->getPosition() << ", and " << endpoints[2]->node->getPosition() << "."); 236 236 try { … … 241 241 } 242 242 Vector InPlane(ClosestPoint); // points from plane intersection to straight-down point 243 LOG(4, "DEBUG: Closest point on triangle plane is " << ClosestPoint << "."); 243 244 244 245 // 2. Calculate in plane part of line (x, intersection) 245 LOG(2, "INFO: Closest point on triangle plane is " << ClosestPoint << ".");246 246 247 247 // Calculate cross point between one baseline and the desired point such that distance is shortest … … 254 254 CrossPoint[i] = l.getClosestPoint(InPlane); 255 255 // NOTE: direction of line is normalized, hence s must not necessarily be in [0,1] for the baseline 256 LOG( 2, "INFO: Closest point on line from " << (endpoints[(i+1)%3]->node->getPosition())256 LOG(4, "DEBUG: Closest point on line from " << (endpoints[(i+1)%3]->node->getPosition()) 257 257 << " to " << (endpoints[i%3]->node->getPosition()) << " is " << CrossPoint[i] << "."); 258 258 CrossPoint[i] -= (endpoints[(i+1)%3]->node->getPosition()); // cross point was returned as absolute vector 259 259 const double s = CrossPoint[i].ScalarProduct(Direction)/Direction.NormSquared(); 260 LOG( 2, "INFO: Factor s is " << s << ".");260 LOG(5, "DEBUG: Factor s is " << s << "."); 261 261 if ((s >= -MYEPSILON) && ((s-1.) <= MYEPSILON)) { 262 262 CrossPoint[i] += (endpoints[(i+1)%3]->node->getPosition()); // make cross point absolute again 263 LOG( 2, "INFO: Crosspoint is " << CrossPoint[i] << ", intersecting BoundaryLine between "263 LOG(5, "DEBUG: Crosspoint is " << CrossPoint[i] << ", intersecting BoundaryLine between " 264 264 << endpoints[i % 3]->node->getPosition() << " and " 265 265 << endpoints[(i + 1) % 3]->node->getPosition() << "."); … … 270 270 else 271 271 CrossPoint[i] = (endpoints[i%3]->node->getPosition()); 272 LOG( 2, "INFO: Crosspoint is " << CrossPoint[i] << ", intersecting outside of BoundaryLine between "272 LOG(5, "DEBUG: Crosspoint is " << CrossPoint[i] << ", intersecting outside of BoundaryLine between " 273 273 << endpoints[i % 3]->node->getPosition() << " and " 274 274 << endpoints[(i + 1) % 3]->node->getPosition() << "."); … … 297 297 ShortestDistance = InPlane.DistanceSquared(x); 298 298 } 299 300 LOG(1, "INFO: Closest Point is " << ClosestPoint << " with shortest squared distance is " << ShortestDistance << "."); 299 LOG(3, "DEBUG: Closest Point is " << ClosestPoint << " with shortest squared distance is " << ShortestDistance << "."); 300 301 301 return ShortestDistance; 302 302 } 303 ; 303 304 304 305 305 /** Checks whether lines is any of the three boundary lines this triangle contains. … … 494 494 (center) += (endpoints[i]->node->getPosition()); 495 495 center.Scale(1. / 3.); 496 LOG( 1, "INFO: Centeris at " << center << ".");496 LOG(4, "DEBUG: Center of BoundaryTriangleSet is at " << center << "."); 497 497 } 498 498 -
src/Tesselation/CandidateForTesselation.cpp
r2a3124 rce7bfd 50 50 OtherShortestAngle(2. * M_PI) 51 51 { 52 Info FunctionInfo(__func__);52 //Info FunctionInfo(__func__); 53 53 } 54 54 ; … … 65 65 OtherShortestAngle(2. * M_PI) 66 66 { 67 Info FunctionInfo(__func__);67 //Info FunctionInfo(__func__); 68 68 }; 69 69 … … 84 84 bool CandidateForTesselation::CheckValidity(const double RADIUS, const LinkedCell_deprecated *LC) const 85 85 { 86 Info FunctionInfo(__func__);86 //Info FunctionInfo(__func__); 87 87 88 88 const double radiusSquared = RADIUS * RADIUS; … … 92 92 93 93 if (!pointlist.empty()) 94 LOG( 1, "INFO: Checking whether sphere contains candidate list and baseline " << *BaseLine->endpoints[0] << "<->" << *BaseLine->endpoints[1] << " only ...");94 LOG(3, "DEBUG: Checking whether sphere contains candidate list and baseline " << *BaseLine->endpoints[0] << "<->" << *BaseLine->endpoints[1] << " only ..."); 95 95 else 96 LOG( 1, "INFO: Checking whether sphere with no candidates contains baseline " << *BaseLine->endpoints[0] << "<->" << *BaseLine->endpoints[1] << " only ...");96 LOG(3, "DEBUG: Checking whether sphere with no candidates contains baseline " << *BaseLine->endpoints[0] << "<->" << *BaseLine->endpoints[1] << " only ..."); 97 97 // check baseline for OptCenter and OtherOptCenter being on sphere's surface 98 98 for (list<const Vector *>::const_iterator VRunner = VectorList.begin(); VRunner != VectorList.end(); ++VRunner) { … … 115 115 return false; 116 116 } else { 117 LOG( 1, "Candidate " << *Walker << " is inside by " << distance << ".");117 LOG(3, "DEBUG: Candidate " << *Walker << " is inside by " << distance << "."); 118 118 } 119 119 } 120 120 } 121 121 122 LOG( 1, "INFO: Checking whether sphere contains no others points ...");122 LOG(2, "DEBUG: Checking whether sphere contains no others points ..."); 123 123 bool flag = true; 124 124 for (list<const Vector *>::const_iterator VRunner = VectorList.begin(); VRunner != VectorList.end(); ++VRunner) { … … 126 126 TesselPointList *ListofPoints = LC->GetPointsInsideSphere(RADIUS, (*VRunner)); 127 127 128 LOG(1, "The following atoms are inside sphere at " << (*VRunner) << ":"); 129 for (TesselPointList::const_iterator Runner = ListofPoints->begin(); Runner != ListofPoints->end(); ++Runner) 130 LOG(1, " " << *(*Runner) << " with distance " << (*Runner)->distance(*(*VRunner)) << "."); 128 { 129 LOG(3, "DEBUG: The following atoms are inside sphere at " << (*VRunner) << ":"); 130 for (TesselPointList::const_iterator Runner = ListofPoints->begin(); Runner != ListofPoints->end(); ++Runner) 131 LOG(3, "DEBUG: " << *(*Runner) << " with distance " << (*Runner)->distance(*(*VRunner)) << "."); 132 } 131 133 132 134 // remove baseline's endpoints and candidates 133 135 for (int i = 0; i < 2; i++) { 134 LOG( 1, "INFO: removing baseline tesselpoint " << *BaseLine->endpoints[i]->node << ".");136 LOG(3, "DEBUG: removing baseline tesselpoint " << *BaseLine->endpoints[i]->node << "."); 135 137 ListofPoints->remove(BaseLine->endpoints[i]->node); 136 138 } 137 139 for (TesselPointList::const_iterator Runner = pointlist.begin(); Runner != pointlist.end(); ++Runner) { 138 LOG( 1, "INFO: removing candidate tesselpoint " << *(*Runner) << ".");140 LOG(3, "DEBUG: removing candidate tesselpoint " << *(*Runner) << "."); 139 141 ListofPoints->remove(*Runner); 140 142 } -
src/Tesselation/boundary.cpp
r2a3124 rce7bfd 63 63 double *GetDiametersOfCluster(const Boundaries *BoundaryPtr, const molecule *mol, Tesselation *&TesselStruct, const bool IsAngstroem) 64 64 { 65 Info FunctionInfo(__func__);65 //Info FunctionInfo(__func__); 66 66 // get points on boundary of NULL was given as parameter 67 67 bool BoundaryFreeFlag = false; … … 163 163 Boundaries *GetBoundaryPoints(const molecule *mol, Tesselation *&TesselStruct) 164 164 { 165 Info FunctionInfo(__func__);165 //Info FunctionInfo(__func__); 166 166 PointMap PointsOnBoundary; 167 167 LineMap LinesOnBoundary; … … 328 328 void FindConvexBorder(const molecule* mol, Boundaries *BoundaryPts, Tesselation *&TesselStruct, const LinkedCell_deprecated *LCList, const char *filename) 329 329 { 330 Info FunctionInfo(__func__);330 //Info FunctionInfo(__func__); 331 331 bool BoundaryFreeFlag = false; 332 332 Boundaries *BoundaryPoints = NULL; … … 443 443 bool RemoveAllBoundaryPoints(class Tesselation *&TesselStruct, const molecule * const mol, const char * const filename) 444 444 { 445 Info FunctionInfo(__func__);445 //Info FunctionInfo(__func__); 446 446 int i=0; 447 447 char number[MAXSTRINGSIZE]; … … 500 500 double ConvexizeNonconvexEnvelope(class Tesselation *&TesselStruct, const molecule * const mol, const char * const filename) 501 501 { 502 Info FunctionInfo(__func__);502 //Info FunctionInfo(__func__); 503 503 double volume = 0; 504 504 class BoundaryPointSet *point = NULL; … … 614 614 void StoreTrianglesinFile(const molecule * const mol, const Tesselation * const TesselStruct, const char *filename, const char *extraSuffix) 615 615 { 616 Info FunctionInfo(__func__);616 //Info FunctionInfo(__func__); 617 617 PointCloudAdaptor< molecule > cloud(const_cast<molecule *>(mol), mol->name); 618 618 // 4. Store triangles in tecplot file … … 651 651 void PrepareClustersinWater(config *configuration, molecule *mol, double ClusterVolume, double celldensity) 652 652 { 653 Info FunctionInfo(__func__);653 //Info FunctionInfo(__func__); 654 654 bool IsAngstroem = true; 655 655 double *GreatestDiameter = NULL; … … 759 759 void FillBoxWithMolecule(MoleculeListClass *List, molecule *filler, config &configuration, const double MaxDistance, const double distance[NDIM], const double boundary, const double RandomAtomDisplacement, const double RandomMolDisplacement, const bool DoRandomRotation) 760 760 { 761 Info FunctionInfo(__func__);761 //Info FunctionInfo(__func__); 762 762 molecule *Filling = World::getInstance().createMolecule(); 763 763 Vector CurrentPosition; … … 1056 1056 ) 1057 1057 { 1058 Info FunctionInfo(__func__);1058 //Info FunctionInfo(__func__); 1059 1059 molecule *Filling = NULL; 1060 1060 Vector CurrentPosition; … … 1231 1231 const bool DoRandomRotation) 1232 1232 { 1233 Info FunctionInfo(__func__);1233 //Info FunctionInfo(__func__); 1234 1234 molecule *Filling = NULL; 1235 1235 Vector CurrentPosition; … … 1424 1424 bool FindNonConvexBorder(molecule* const mol, Tesselation *&TesselStruct, const LinkedCell_deprecated *&LCList, const double RADIUS, const char *filename = NULL) 1425 1425 { 1426 Info FunctionInfo(__func__);1426 //Info FunctionInfo(__func__); 1427 1427 bool freeLC = false; 1428 1428 bool status = false; … … 1554 1554 Vector* FindEmbeddingHole(MoleculeListClass *mols, molecule *srcmol) 1555 1555 { 1556 Info FunctionInfo(__func__);1556 //Info FunctionInfo(__func__); 1557 1557 Vector *Center = new Vector; 1558 1558 Center->Zero(); -
src/Tesselation/ellipsoid.cpp
r2a3124 rce7bfd 430 430 Center += (Runner->second->node->getPosition()); 431 431 Center.Scale(1./T->PointsOnBoundaryCount); 432 LOG( 1, "Centeris at " << Center << ".");432 LOG(4, "DEBUG: Center of PointsOnBoundary is at " << Center << "."); 433 433 434 434 // Output header -
src/Tesselation/tesselation.cpp
r2a3124 rce7bfd 68 68 InternalPointer(PointsOnBoundary.begin()) 69 69 { 70 Info FunctionInfo(__func__);70 //Info FunctionInfo(__func__); 71 71 } 72 72 ; … … 77 77 Tesselation::~Tesselation() 78 78 { 79 Info FunctionInfo(__func__);80 LOG( 0, "Free'ing TesselStruct ... ");79 //Info FunctionInfo(__func__); 80 LOG(2, "INFO: Free'ing TesselStruct ... "); 81 81 for (TriangleMap::iterator runner = TrianglesOnBoundary.begin(); runner != TrianglesOnBoundary.end(); runner++) { 82 82 if (runner->second != NULL) { … … 86 86 ELOG(1, "The triangle " << runner->first << " has already been free'd."); 87 87 } 88 LOG( 0, "This envelope was written to file " << TriangleFilesWritten << " times(s).");88 LOG(1, "INFO: This envelope was written to file " << TriangleFilesWritten << " times(s)."); 89 89 } 90 90 … … 198 198 void Tesselation::GuessStartingTriangle() 199 199 { 200 Info FunctionInfo(__func__);200 //Info FunctionInfo(__func__); 201 201 // 4b. create a starting triangle 202 202 // 4b1. create all distances … … 331 331 void Tesselation::TesselateOnBoundary(IPointCloud & cloud) 332 332 { 333 Info FunctionInfo(__func__);333 //Info FunctionInfo(__func__); 334 334 bool flag; 335 335 PointMap::iterator winner; … … 350 350 // get peak point with respect to this base line's only triangle 351 351 BTS = baseline->second->triangles.begin()->second; // there is only one triangle so far 352 LOG( 0, "Current baseline is between " << *(baseline->second) << ".");352 LOG(3, "DEBUG: Current baseline is between " << *(baseline->second) << "."); 353 353 for (int i = 0; i < 3; i++) 354 354 if ((BTS->endpoints[i] != baseline->second->endpoints[0]) && (BTS->endpoints[i] != baseline->second->endpoints[1])) 355 355 peak = BTS->endpoints[i]; 356 LOG( 1, "and has peak " << *peak << ".");356 LOG(3, "DEBUG: and has peak " << *peak << "."); 357 357 358 358 // prepare some auxiliary vectors … … 373 373 BTS->GetNormalVector(NormalVector); 374 374 NormalVector = BTS->NormalVector; 375 LOG( 2, "NormalVector of base triangle is " << NormalVector);375 LOG(4, "DEBUG: NormalVector of base triangle is " << NormalVector); 376 376 377 377 // vector in propagation direction (out of triangle) … … 382 382 if (PropagationVector.ScalarProduct(TempVector) > 0) // make sure normal propagation vector points outward from baseline 383 383 PropagationVector.Scale(-1.); 384 LOG( 2, "PropagationVector of base triangle is " << PropagationVector);384 LOG(4, "DEBUG: PropagationVector of base triangle is " << PropagationVector); 385 385 winner = PointsOnBoundary.end(); 386 386 … … 388 388 for (PointMap::iterator target = PointsOnBoundary.begin(); target != PointsOnBoundary.end(); target++) { 389 389 if ((target->second != baseline->second->endpoints[0]) && (target->second != baseline->second->endpoints[1])) { // don't take the same endpoints 390 LOG( 1, "Target point is " << *(target->second) << ":");390 LOG(4, "DEBUG: Target point is " << *(target->second) << ":"); 391 391 392 392 // first check direction, so that triangles don't intersect … … 394 394 VirtualNormalVector.ProjectOntoPlane(NormalVector); 395 395 TempAngle = VirtualNormalVector.Angle(PropagationVector); 396 LOG( 2, "VirtualNormalVector is " << VirtualNormalVector << " and PropagationVector is " << PropagationVector << ".");396 LOG(5, "DEBUG: VirtualNormalVector is " << VirtualNormalVector << " and PropagationVector is " << PropagationVector << "."); 397 397 if (TempAngle > (M_PI / 2.)) { // no bends bigger than Pi/2 (90 degrees) 398 LOG( 2, "Angle on triangle plane between propagation direction and base line to " << *(target->second) << " is " << TempAngle << ", bad direction!");398 LOG(5, "DEBUG: Angle on triangle plane between propagation direction and base line to " << *(target->second) << " is " << TempAngle << ", bad direction!"); 399 399 continue; 400 400 } else 401 LOG( 2, "Angle on triangle plane between propagation direction and base line to " << *(target->second) << " is " << TempAngle << ", good direction!");401 LOG(5, "DEBUG: Angle on triangle plane between propagation direction and base line to " << *(target->second) << " is " << TempAngle << ", good direction!"); 402 402 403 403 // check first and second endpoint (if any connecting line goes to target has at least not more than 1 triangle) … … 405 405 LineChecker[1] = baseline->second->endpoints[1]->lines.find(target->first); 406 406 if (((LineChecker[0] != baseline->second->endpoints[0]->lines.end()) && (LineChecker[0]->second->triangles.size() == 2))) { 407 LOG( 2,*(baseline->second->endpoints[0]) << " has line " << *(LineChecker[0]->second) << " to " << *(target->second) << " as endpoint with " << LineChecker[0]->second->triangles.size() << " triangles.");407 LOG(5, "DEBUG: " << *(baseline->second->endpoints[0]) << " has line " << *(LineChecker[0]->second) << " to " << *(target->second) << " as endpoint with " << LineChecker[0]->second->triangles.size() << " triangles."); 408 408 continue; 409 409 } 410 410 if (((LineChecker[1] != baseline->second->endpoints[1]->lines.end()) && (LineChecker[1]->second->triangles.size() == 2))) { 411 LOG( 2,*(baseline->second->endpoints[1]) << " has line " << *(LineChecker[1]->second) << " to " << *(target->second) << " as endpoint with " << LineChecker[1]->second->triangles.size() << " triangles.");411 LOG(5, "DEBUG: " << *(baseline->second->endpoints[1]) << " has line " << *(LineChecker[1]->second) << " to " << *(target->second) << " as endpoint with " << LineChecker[1]->second->triangles.size() << " triangles."); 412 412 continue; 413 413 } … … 415 415 // check whether the envisaged triangle does not already exist (if both lines exist and have same endpoint) 416 416 if ((((LineChecker[0] != baseline->second->endpoints[0]->lines.end()) && (LineChecker[1] != baseline->second->endpoints[1]->lines.end()) && (GetCommonEndpoint(LineChecker[0]->second, LineChecker[1]->second) == peak)))) { 417 LOG( 4, "Current target is peak!");417 LOG(6, "DEBUG: Current target is peak!"); 418 418 continue; 419 419 } … … 442 442 // calculate angle 443 443 TempAngle = NormalVector.Angle(VirtualNormalVector); 444 LOG( 2, "NormalVector is " << VirtualNormalVector << " and the angle is " << TempAngle << ".");444 LOG(5, "DEBUG: NormalVector is " << VirtualNormalVector << " and the angle is " << TempAngle << "."); 445 445 if ((SmallestAngle - TempAngle) > MYEPSILON) { // set to new possible winner 446 446 SmallestAngle = TempAngle; 447 447 winner = target; 448 LOG( 2, "New winner " << *winner->second->node << " due to smaller angle between normal vectors.");448 LOG(5, "DEBUG: New winner " << *winner->second->node << " due to smaller angle between normal vectors."); 449 449 } else if (fabs(SmallestAngle - TempAngle) < MYEPSILON) { // check the angle to propagation, both possible targets are in one plane! (their normals have same angle) 450 450 // hence, check the angles to some normal direction from our base line but in this common plane of both targets... … … 461 461 SmallestAngle = TempAngle; 462 462 winner = target; 463 LOG( 2, "New winner " << *winner->second->node << " due to smaller angle " << TempAngle << " to propagation direction.");463 LOG(5, "DEBUG: New winner " << *winner->second->node << " due to smaller angle " << TempAngle << " to propagation direction."); 464 464 } else 465 LOG( 2, "Keeping old winner " << *winner->second->node << " due to smaller angle to propagation direction.");465 LOG(5, "DEBUG: Keeping old winner " << *winner->second->node << " due to smaller angle to propagation direction."); 466 466 } else 467 LOG( 2, "Keeping old winner " << *winner->second->node << " due to smaller angle between normal vectors.");467 LOG(5, "DEBUG: Keeping old winner " << *winner->second->node << " due to smaller angle between normal vectors."); 468 468 } 469 469 } // end of loop over all boundary points … … 471 471 // 5b. The point of the above whose triangle has the greatest angle with the triangle the current line belongs to (it only belongs to one, remember!): New triangle 472 472 if (winner != PointsOnBoundary.end()) { 473 LOG( 0, "Winning target point is " << *(winner->second) << " with angle " << SmallestAngle << ".");473 LOG(3, "DEBUG: Winning target point is " << *(winner->second) << " with angle " << SmallestAngle << "."); 474 474 // create the lins of not yet present 475 475 BLS[0] = baseline->second; … … 506 506 // 5d. If the set of lines is not yet empty, go to 5. and continue 507 507 } else 508 LOG( 0, "Baseline candidate " << *(baseline->second) << " has a triangle count of " << baseline->second->triangles.size() << ".");508 LOG(3, "DEBUG: Baseline candidate " << *(baseline->second) << " has a triangle count of " << baseline->second->triangles.size() << "."); 509 509 } while (flag); 510 510 … … 522 522 bool Tesselation::InsertStraddlingPoints(IPointCloud & cloud, const LinkedCell_deprecated *LC) 523 523 { 524 Info FunctionInfo(__func__);524 //Info FunctionInfo(__func__); 525 525 Vector Intersection, Normal; 526 526 TesselPoint *Walker = NULL; … … 541 541 } 542 542 Walker = cloud.GetPoint(); 543 LOG( 0, "Current point is " << *Walker << ".");543 LOG(3, "DEBUG: Current point is " << *Walker << "."); 544 544 // get the next triangle 545 545 triangles = FindClosestTrianglesToVector(Walker->getPosition(), BoundaryPoints); … … 550 550 delete triangles; 551 551 if ((BTS == NULL) || (BTS->ContainsBoundaryPoint(Walker))) { 552 LOG( 0, "No triangles found, probably a tesselation point itself.");552 LOG(3, "DEBUG: No triangles found, probably a tesselation point itself."); 553 553 cloud.GoToNext(); 554 554 continue; 555 555 } else { 556 556 } 557 LOG( 0, "Closest triangle is " << *BTS << ".");557 LOG(3, "DEBUG: Closest triangle is " << *BTS << "."); 558 558 // get the intersection point 559 559 if (BTS->GetIntersectionInsideTriangle(*Center, Walker->getPosition(), Intersection)) { 560 LOG( 0, "We have an intersection at " << Intersection << ".");560 LOG(3, "DEBUG: We have an intersection at " << Intersection << "."); 561 561 // we have the intersection, check whether in- or outside of boundary 562 562 if ((Center->DistanceSquared(Walker->getPosition()) - Center->DistanceSquared(Intersection)) < -MYEPSILON) { 563 563 // inside, next! 564 LOG( 0,*Walker << " is inside wrt triangle " << *BTS << ".");564 LOG(3, "DEBUG: " << *Walker << " is inside wrt triangle " << *BTS << "."); 565 565 } else { 566 566 // outside! 567 LOG( 0,*Walker << " is outside wrt triangle " << *BTS << ".");567 LOG(3, "DEBUG: " << *Walker << " is outside wrt triangle " << *BTS << "."); 568 568 class BoundaryLineSet *OldLines[3], *NewLines[3]; 569 569 class BoundaryPointSet *OldPoints[3], *NewPoint; … … 575 575 Normal = BTS->NormalVector; 576 576 // add Walker to boundary points 577 LOG( 0, "Adding " << *Walker << " to BoundaryPoints.");577 LOG(3, "DEBUG: Adding " << *Walker << " to BoundaryPoints."); 578 578 AddFlag = true; 579 579 if (AddBoundaryPoint(Walker, 0)) … … 582 582 continue; 583 583 // remove triangle 584 LOG( 0, "Erasing triangle " << *BTS << ".");584 LOG(3, "DEBUG: Erasing triangle " << *BTS << "."); 585 585 TrianglesOnBoundary.erase(BTS->Nr); 586 586 delete (BTS); … … 590 590 BPS[1] = OldPoints[i]; 591 591 NewLines[i] = new class BoundaryLineSet(BPS, LinesOnBoundaryCount); 592 LOG( 1, "Creating new line " << *NewLines[i] << ".");592 LOG(4, "DEBUG: Creating new line " << *NewLines[i] << "."); 593 593 LinesOnBoundary.insert(LinePair(LinesOnBoundaryCount, NewLines[i])); // no need for check for unique insertion as BPS[0] is definitely a new one 594 594 LinesOnBoundaryCount++; … … 612 612 BTS->GetNormalVector(Normal); 613 613 Normal.Scale(-1.); 614 LOG( 0, "Created new triangle " << *BTS << ".");614 LOG(3, "DEBUG: Created new triangle " << *BTS << "."); 615 615 TrianglesOnBoundary.insert(TrianglePair(TrianglesOnBoundaryCount, BTS)); 616 616 TrianglesOnBoundaryCount++; … … 639 639 bool Tesselation::AddBoundaryPoint(TesselPoint * Walker, const int n) 640 640 { 641 Info FunctionInfo(__func__);641 //Info FunctionInfo(__func__); 642 642 PointTestPair InsertUnique; 643 643 BPS[n] = new class BoundaryPointSet(Walker); … … 661 661 void Tesselation::AddTesselationPoint(TesselPoint* Candidate, const int n) 662 662 { 663 Info FunctionInfo(__func__);663 //Info FunctionInfo(__func__); 664 664 PointTestPair InsertUnique; 665 665 TPS[n] = new class BoundaryPointSet(Candidate); … … 669 669 } else { 670 670 delete TPS[n]; 671 LOG( 0, "Node " << *((InsertUnique.first)->second->node) << " is already present in PointsOnBoundary.");671 LOG(4, "DEBUG: Node " << *((InsertUnique.first)->second->node) << " is already present in PointsOnBoundary."); 672 672 TPS[n] = (InsertUnique.first)->second; 673 673 } … … 682 682 void Tesselation::SetTesselationPoint(TesselPoint* Candidate, const int n) const 683 683 { 684 Info FunctionInfo(__func__);684 //Info FunctionInfo(__func__); 685 685 PointMap::const_iterator FindPoint = PointsOnBoundary.find(Candidate->getNr()); 686 686 if (FindPoint != PointsOnBoundary.end()) … … 706 706 BoundaryLineSet *WinningLine = NULL; 707 707 if (FindLine != a->lines.end()) { 708 LOG( 1, "INFO: There is at least one line between " << *a << " and " << *b << ": " << *(FindLine->second) << ".");708 LOG(3, "DEBUG: There is at least one line between " << *a << " and " << *b << ": " << *(FindLine->second) << "."); 709 709 710 710 pair<LineMap::iterator, LineMap::iterator> FindPair; … … 712 712 713 713 for (FindLine = FindPair.first; (FindLine != FindPair.second) && (insertNewLine); FindLine++) { 714 LOG( 1, "INFO: Checking line " << *(FindLine->second) << " ...");714 LOG(3, "DEBUG: Checking line " << *(FindLine->second) << " ..."); 715 715 // If there is a line with less than two attached triangles, we don't need a new line. 716 716 if (FindLine->second->triangles.size() == 1) { 717 717 CandidateMap::iterator Finder = OpenLines.find(FindLine->second); 718 718 if (!Finder->second->pointlist.empty()) 719 LOG( 1, "INFO: line " << *(FindLine->second) << " is open with candidate " << **(Finder->second->pointlist.begin()) << ".");719 LOG(4, "DEBUG: line " << *(FindLine->second) << " is open with candidate " << **(Finder->second->pointlist.begin()) << "."); 720 720 else 721 LOG( 1, "INFO: line " << *(FindLine->second) << " is open with no candidate.");721 LOG(4, "DEBUG: line " << *(FindLine->second) << " is open with no candidate."); 722 722 // get open line 723 723 for (TesselPointList::const_iterator CandidateChecker = Finder->second->pointlist.begin(); CandidateChecker != Finder->second->pointlist.end(); ++CandidateChecker) { 724 724 if ((*(CandidateChecker) == candidate->node) && (OptCenter == NULL || OptCenter->DistanceSquared(Finder->second->OptCenter) < MYEPSILON )) { // stop searching if candidate matches 725 LOG( 1, "ACCEPT: Candidate " << *(*CandidateChecker) << " has the right center " << Finder->second->OptCenter << ".");725 LOG(4, "ACCEPT: Candidate " << *(*CandidateChecker) << " has the right center " << Finder->second->OptCenter << "."); 726 726 insertNewLine = false; 727 727 WinningLine = FindLine->second; 728 728 break; 729 729 } else { 730 LOG( 1, "REJECT: Candidate " << *(*CandidateChecker) << "'s center " << Finder->second->OptCenter << " does not match desired on " << *OptCenter << ".");730 LOG(5, "REJECT: Candidate " << *(*CandidateChecker) << "'s center " << Finder->second->OptCenter << " does not match desired on " << *OptCenter << "."); 731 731 } 732 732 } … … 753 753 void Tesselation::AddNewTesselationTriangleLine(class BoundaryPointSet *a, class BoundaryPointSet *b, const int n) 754 754 { 755 Info FunctionInfo(__func__);756 LOG( 0, "Adding open line [" << LinesOnBoundaryCount << "|" << *(a->node) << " and " << *(b->node) << ".");755 //Info FunctionInfo(__func__); 756 LOG(2, "DEBUG: Adding open line [" << LinesOnBoundaryCount << "|" << *(a->node) << " and " << *(b->node) << "."); 757 757 BPS[0] = a; 758 758 BPS[1] = b; … … 775 775 void Tesselation::AddExistingTesselationTriangleLine(class BoundaryLineSet *Line, int n) 776 776 { 777 Info FunctionInfo(__func__);778 LOG( 0, "Using existing line " << *Line);777 //Info FunctionInfo(__func__); 778 LOG(5, "DEBUG: Using existing line " << *Line); 779 779 780 780 // set endpoints and line … … 785 785 CandidateMap::iterator CandidateLine = OpenLines.find(BLS[n]); 786 786 if (CandidateLine != OpenLines.end()) { 787 LOG( 1, "Removing line from OpenLines.");787 LOG(6, "DEBUG: Removing line from OpenLines."); 788 788 delete (CandidateLine->second); 789 789 OpenLines.erase(CandidateLine); … … 799 799 void Tesselation::AddTesselationTriangle() 800 800 { 801 Info FunctionInfo(__func__);802 LOG( 1, "Adding triangle to global TrianglesOnBoundary map.");801 //Info FunctionInfo(__func__); 802 LOG(4, "DEBUG: Adding triangle to global TrianglesOnBoundary map."); 803 803 804 804 // add triangle to global map … … 819 819 void Tesselation::AddTesselationTriangle(const int nr) 820 820 { 821 Info FunctionInfo(__func__);822 LOG( 0, "Adding triangle to global TrianglesOnBoundary map.");821 //Info FunctionInfo(__func__); 822 LOG(4, "DEBUG: Adding triangle to global TrianglesOnBoundary map."); 823 823 824 824 // add triangle to global map … … 839 839 void Tesselation::RemoveTesselationTriangle(class BoundaryTriangleSet *triangle) 840 840 { 841 Info FunctionInfo(__func__);841 //Info FunctionInfo(__func__); 842 842 if (triangle == NULL) 843 843 return; 844 844 for (int i = 0; i < 3; i++) { 845 845 if (triangle->lines[i] != NULL) { 846 LOG( 0, "Removing triangle Nr." << triangle->Nr << " in line " << *triangle->lines[i] << ".");846 LOG(4, "DEBUG: Removing triangle Nr." << triangle->Nr << " in line " << *triangle->lines[i] << "."); 847 847 triangle->lines[i]->triangles.erase(triangle->Nr); 848 848 std::stringstream output; 849 output << "INFO: " <<*triangle->lines[i] << " is ";849 output << *triangle->lines[i] << " is "; 850 850 if (triangle->lines[i]->triangles.empty()) { 851 851 output << "no more attached to any triangle, erasing."; … … 857 857 output << "\t[" << (TriangleRunner->second)->Nr << "|" << *((TriangleRunner->second)->endpoints[0]) << ", " << *((TriangleRunner->second)->endpoints[1]) << ", " << *((TriangleRunner->second)->endpoints[2]) << "] \t"; 858 858 } 859 LOG( 1,output.str());859 LOG(3, "DEBUG: " << output.str()); 860 860 triangle->lines[i] = NULL; // free'd or not: disconnect 861 861 } else … … 864 864 865 865 if (TrianglesOnBoundary.erase(triangle->Nr)) 866 LOG( 0, "Removing triangle Nr. " << triangle->Nr << ".");866 LOG(3, "DEBUG: Removing triangle Nr. " << triangle->Nr << "."); 867 867 delete (triangle); 868 868 } … … 875 875 void Tesselation::RemoveTesselationLine(class BoundaryLineSet *line) 876 876 { 877 Info FunctionInfo(__func__);877 //Info FunctionInfo(__func__); 878 878 int Numbers[2]; 879 879 … … 896 896 for (LineMap::iterator Runner = erasor.first; Runner != erasor.second; Runner++) 897 897 if ((*Runner).second == line) { 898 LOG( 0, "Removing Line Nr. " << line->Nr << " in boundary point " << *line->endpoints[i] << ".");898 LOG(4, "DEBUG: Removing Line Nr. " << line->Nr << " in boundary point " << *line->endpoints[i] << "."); 899 899 line->endpoints[i]->lines.erase(Runner); 900 900 break; … … 902 902 } else { // there's just a single line left 903 903 if (line->endpoints[i]->lines.erase(line->Nr)) 904 LOG( 0, "Removing Line Nr. " << line->Nr << " in boundary point " << *line->endpoints[i] << ".");904 LOG(4, "DEBUG: Removing Line Nr. " << line->Nr << " in boundary point " << *line->endpoints[i] << "."); 905 905 } 906 906 if (line->endpoints[i]->lines.empty()) { 907 LOG( 0,*line->endpoints[i] << " has no more lines it's attached to, erasing.");907 LOG(4, "DEBUG: " << *line->endpoints[i] << " has no more lines it's attached to, erasing."); 908 908 RemoveTesselationPoint(line->endpoints[i]); 909 909 } else if (DoLog(0)) { 910 910 std::stringstream output; 911 output << *line->endpoints[i] << " has still lines it's attached to: ";911 output << "DEBUG: " << *line->endpoints[i] << " has still lines it's attached to: "; 912 912 for (LineMap::iterator LineRunner = line->endpoints[i]->lines.begin(); LineRunner != line->endpoints[i]->lines.end(); LineRunner++) 913 913 output << "[" << *(LineRunner->second) << "] \t"; 914 LOG( 0, output.str());914 LOG(4, output.str()); 915 915 } 916 916 line->endpoints[i] = NULL; // free'd or not: disconnect 917 917 } else 918 ELOG( 1, "Endpoint " << i << " has already been free'd.");918 ELOG(4, "DEBUG: Endpoint " << i << " has already been free'd."); 919 919 } 920 920 if (!line->triangles.empty()) … … 922 922 923 923 if (LinesOnBoundary.erase(line->Nr)) 924 LOG( 0, "Removing line Nr. " << line->Nr << ".");924 LOG(4, "DEBUG: Removing line Nr. " << line->Nr << "."); 925 925 delete (line); 926 926 } … … 934 934 void Tesselation::RemoveTesselationPoint(class BoundaryPointSet *point) 935 935 { 936 Info FunctionInfo(__func__);936 //Info FunctionInfo(__func__); 937 937 if (point == NULL) 938 938 return; 939 939 if (PointsOnBoundary.erase(point->Nr)) 940 LOG( 0, "Removing point Nr. " << point->Nr << ".");940 LOG(4, "DEBUG: Removing point Nr. " << point->Nr << "."); 941 941 delete (point); 942 942 } … … 953 953 bool Tesselation::CheckDegeneracy(CandidateForTesselation &CandidateLine, const double RADIUS, const LinkedCell_deprecated *LC) const 954 954 { 955 Info FunctionInfo(__func__);956 957 LOG( 1, "INFO: Checking whether sphere contains no others points ...");955 //Info FunctionInfo(__func__); 956 957 LOG(3, "DEBUG: Checking whether sphere contains no others points ..."); 958 958 bool flag = true; 959 959 960 LOG( 1, "Check by: draw sphere {" << CandidateLine.OtherOptCenter[0] << " " << CandidateLine.OtherOptCenter[1] << " " << CandidateLine.OtherOptCenter[2] << "} radius " << RADIUS << " resolution 30");960 LOG(3, "DEBUG: Check by: draw sphere {" << CandidateLine.OtherOptCenter[0] << " " << CandidateLine.OtherOptCenter[1] << " " << CandidateLine.OtherOptCenter[2] << "} radius " << RADIUS << " resolution 30"); 961 961 // get all points inside the sphere 962 962 TesselPointList *ListofPoints = LC->GetPointsInsideSphere(RADIUS, &CandidateLine.OtherOptCenter); 963 963 964 LOG( 1, "The following atoms are inside sphere at " << CandidateLine.OtherOptCenter << ":");964 LOG(3, "DEBUG: The following atoms are inside sphere at " << CandidateLine.OtherOptCenter << ":"); 965 965 for (TesselPointList::const_iterator Runner = ListofPoints->begin(); Runner != ListofPoints->end(); ++Runner) 966 LOG( 1, "" << *(*Runner) << " with distance " << (*Runner)->distance(CandidateLine.OtherOptCenter) << ".");966 LOG(3, "DEBUG: " << *(*Runner) << " with distance " << (*Runner)->distance(CandidateLine.OtherOptCenter) << "."); 967 967 968 968 // remove triangles's endpoints … … 976 976 // check for other points 977 977 if (!ListofPoints->empty()) { 978 LOG( 1, "CheckDegeneracy: There are still " << ListofPoints->size() << " points inside the sphere.");978 LOG(3, "DEBUG: CheckDegeneracy: There are still " << ListofPoints->size() << " points inside the sphere."); 979 979 flag = false; 980 LOG( 1, "External atoms inside of sphere at " << CandidateLine.OtherOptCenter << ":");980 LOG(3, "DEBUG: External atoms inside of sphere at " << CandidateLine.OtherOptCenter << ":"); 981 981 for (TesselPointList::const_iterator Runner = ListofPoints->begin(); Runner != ListofPoints->end(); ++Runner) 982 LOG( 1, "" << *(*Runner) << " with distance " << (*Runner)->distance(CandidateLine.OtherOptCenter) << ".");982 LOG(3, "DEBUG: " << *(*Runner) << " with distance " << (*Runner)->distance(CandidateLine.OtherOptCenter) << "."); 983 983 } 984 984 delete (ListofPoints); … … 999 999 int Tesselation::CheckPresenceOfTriangle(TesselPoint *Candidates[3]) const 1000 1000 { 1001 Info FunctionInfo(__func__);1001 //Info FunctionInfo(__func__); 1002 1002 int adjacentTriangleCount = 0; 1003 1003 class BoundaryPointSet *Points[3]; … … 1021 1021 for (; (FindLine != Points[i]->lines.end()) && (FindLine->first == Points[j]->node->getNr()); FindLine++) { 1022 1022 TriangleMap *triangles = &FindLine->second->triangles; 1023 LOG( 1, "Current line is " << FindLine->first << ": " << *(FindLine->second) << " with triangles " << triangles << ".");1023 LOG(5, "DEBUG: Current line is " << FindLine->first << ": " << *(FindLine->second) << " with triangles " << triangles << "."); 1024 1024 for (TriangleMap::const_iterator FindTriangle = triangles->begin(); FindTriangle != triangles->end(); FindTriangle++) { 1025 1025 if (FindTriangle->second->IsPresentTupel(Points)) { … … 1027 1027 } 1028 1028 } 1029 LOG(1, "end.");1030 1029 } 1031 1030 // Only one of the triangle lines must be considered for the triangle count. 1032 //LOG( 0, "Found " << adjacentTriangleCount << " adjacent triangles for the point set.");1031 //LOG(5, "DEBUG: Found " << adjacentTriangleCount << " adjacent triangles for the point set."); 1033 1032 //return adjacentTriangleCount; 1034 1033 } … … 1037 1036 } 1038 1037 1039 LOG( 0, "Found " << adjacentTriangleCount << " adjacent triangles for the point set.");1038 LOG(3, "DEBUG: Found " << adjacentTriangleCount << " adjacent triangles for the point set."); 1040 1039 return adjacentTriangleCount; 1041 1040 } … … 1052 1051 class BoundaryTriangleSet * Tesselation::GetPresentTriangle(TesselPoint *Candidates[3]) 1053 1052 { 1054 Info FunctionInfo(__func__);1053 //Info FunctionInfo(__func__); 1055 1054 class BoundaryTriangleSet *triangle = NULL; 1056 1055 class BoundaryPointSet *Points[3]; … … 1082 1081 } 1083 1082 // Only one of the triangle lines must be considered for the triangle count. 1084 //LOG( 0, "Found " << adjacentTriangleCount << " adjacent triangles for the point set.");1083 //LOG(5, "DEBUG: Found " << adjacentTriangleCount << " adjacent triangles for the point set."); 1085 1084 //return adjacentTriangleCount; 1086 1085 } … … 1104 1103 bool Tesselation::FindStartingTriangle(const double RADIUS, const LinkedCell_deprecated *LC) 1105 1104 { 1106 Info FunctionInfo(__func__);1105 //Info FunctionInfo(__func__); 1107 1106 int i = 0; 1108 1107 TesselPoint* MaxPoint[NDIM]; … … 1136 1135 for (TesselPointSTLList::const_iterator Runner = List->begin(); Runner != List->end(); Runner++) { 1137 1136 if ((*Runner)->at(map[0]) > maxCoordinate[map[0]]) { 1138 LOG( 1, "New maximal for axis " << map[0] << " node is " << *(*Runner) << " at " << (*Runner)->getPosition() << ".");1137 LOG(4, "DEBUG: New maximal for axis " << map[0] << " node is " << *(*Runner) << " at " << (*Runner)->getPosition() << "."); 1139 1138 maxCoordinate[map[0]] = (*Runner)->at(map[0]); 1140 1139 MaxPoint[map[0]] = (*Runner); … … 1152 1151 for (int i = 0; i < NDIM; i++) 1153 1152 output << i << ": " << *MaxPoint[i] << "\t"; 1154 LOG( 1,output.str());1153 LOG(3, "DEBUG: " << output.str()); 1155 1154 } 1156 1155 … … 1161 1160 BaseLine = new BoundaryLineSet(); 1162 1161 BaseLine->endpoints[0] = new BoundaryPointSet(MaxPoint[k]); 1163 LOG( 0, "INFO: Coordinates of start node at " << *BaseLine->endpoints[0]->node << ".");1162 LOG(2, "DEBUG: Coordinates of start node at " << *BaseLine->endpoints[0]->node << "."); 1164 1163 1165 1164 double ShortestAngle; … … 1206 1205 1207 1206 // adding point 1 and point 2 and add the line between them 1208 LOG(0, "Coordinates of start node at " << *BaseLine->endpoints[0]->node << "."); 1209 LOG(0, "Found second point is at " << *BaseLine->endpoints[1]->node << "."); 1207 LOG(2, "DEBUG: Found second point is at " << *BaseLine->endpoints[1]->node << "."); 1210 1208 1211 1209 //LOG(1, "INFO: OldSphereCenter is at " << helper << "."); 1212 1210 CandidateForTesselation OptCandidates(BaseLine); 1213 1211 FindThirdPointForTesselation(NormalVector, SearchDirection, SphereCenter, OptCandidates, NULL, RADIUS, LC); 1214 LOG(0, "List of third Points is:"); 1215 for (TesselPointList::iterator it = OptCandidates.pointlist.begin(); it != OptCandidates.pointlist.end(); it++) { 1216 LOG(0, " " << *(*it)); 1212 { 1213 std::stringstream output; 1214 for (TesselPointList::iterator it = OptCandidates.pointlist.begin(); it != OptCandidates.pointlist.end(); it++) 1215 output << *(*it); 1216 LOG(2, "DEBUG: List of third Points is: " << output.str()); 1217 1217 } 1218 1218 if (!OptCandidates.pointlist.empty()) { … … 1248 1248 //bool Tesselation::HasOtherBaselineBetterCandidate(CandidateForTesselation &CandidateLine, const TesselPoint * const ThirdNode, double RADIUS, const LinkedCell_deprecated * const LC) const 1249 1249 //{ 1250 // Info FunctionInfo(__func__);1250 // //Info FunctionInfo(__func__); 1251 1251 // bool result = false; 1252 1252 // Vector CircleCenter; … … 1387 1387 bool Tesselation::FindNextSuitableTriangle(CandidateForTesselation &CandidateLine, const BoundaryTriangleSet &T, const double& RADIUS, const LinkedCell_deprecated *LC) 1388 1388 { 1389 Info FunctionInfo(__func__);1389 //Info FunctionInfo(__func__); 1390 1390 Vector CircleCenter; 1391 1391 Vector CirclePlaneNormal; … … 1402 1402 break; 1403 1403 } 1404 LOG( 0, "Current baseline is " << *CandidateLine.BaseLine << " with ThirdPoint " << *ThirdPoint << " of triangle " << T << ".");1404 LOG(3, "DEBUG: Current baseline is " << *CandidateLine.BaseLine << " with ThirdPoint " << *ThirdPoint << " of triangle " << T << "."); 1405 1405 1406 1406 CandidateLine.T = &T; … … 1422 1422 CircleRadius = RADIUS * RADIUS - radius / 4.; 1423 1423 CirclePlaneNormal.Normalize(); 1424 LOG( 1, "INFO: CircleCenter is at " << CircleCenter << ", CirclePlaneNormal is " << CirclePlaneNormal << " with circle radius " << sqrt(CircleRadius) << ".");1425 1426 LOG( 1, "INFO: OldSphereCenter is at " << T.SphereCenter << ".");1424 LOG(3, "DEBUG: CircleCenter is at " << CircleCenter << ", CirclePlaneNormal is " << CirclePlaneNormal << " with circle radius " << sqrt(CircleRadius) << "."); 1425 1426 LOG(3, "DEBUG: OldSphereCenter is at " << T.SphereCenter << "."); 1427 1427 1428 1428 // construct SearchDirection and an "outward pointer" … … 1431 1431 if (helper.ScalarProduct(SearchDirection) < -HULLEPSILON)// ohoh, SearchDirection points inwards! 1432 1432 SearchDirection.Scale(-1.); 1433 LOG( 1, "INFO: SearchDirection is " << SearchDirection << ".");1433 LOG(3, "DEBUG: SearchDirection is " << SearchDirection << "."); 1434 1434 if (fabs(RelativeSphereCenter.ScalarProduct(SearchDirection)) > HULLEPSILON) { 1435 1435 // rotated the wrong way! 1436 ELOG( 1, "SearchDirection and RelativeOldSphereCenter are still not orthogonal!");1436 ELOG(3, "DEBUG: SearchDirection and RelativeOldSphereCenter are still not orthogonal!"); 1437 1437 } 1438 1438 … … 1441 1441 1442 1442 } else { 1443 LOG( 0, "Circumcircle for base line " << *CandidateLine.BaseLine << " and base triangle " << T << " is too big!");1443 LOG(3, "DEBUG: Circumcircle for base line " << *CandidateLine.BaseLine << " and base triangle " << T << " is too big!"); 1444 1444 } 1445 1445 1446 1446 if (CandidateLine.pointlist.empty()) { 1447 ELOG( 2, "Could not find a suitable candidate.");1447 ELOG(4, "DEBUG: Could not find a suitable candidate."); 1448 1448 return false; 1449 1449 } 1450 LOG(0, "Third Points are: "); 1451 for (TesselPointList::iterator it = CandidateLine.pointlist.begin(); it != CandidateLine.pointlist.end(); ++it) { 1452 LOG(0, " " << *(*it)); 1450 { 1451 std::stringstream output; 1452 for (TesselPointList::iterator it = CandidateLine.pointlist.begin(); it != CandidateLine.pointlist.end(); ++it) 1453 output << " " << *(*it); 1454 LOG(3, "DEBUG: Third Points are: " << output.str()); 1453 1455 } 1454 1456 … … 1474 1476 ASSERT((baseline->BaseLine->triangles.size() == 1),"Open line without exactly one attached triangle"); 1475 1477 T = (((baseline->BaseLine->triangles.begin()))->second); 1476 LOG( 1, "Finding best candidate for open line " << *baseline->BaseLine << " of triangle " << *T);1478 LOG(4, "DEBUG: Finding best candidate for open line " << *baseline->BaseLine << " of triangle " << *T); 1477 1479 TesselationFailFlag = TesselationFailFlag && FindNextSuitableTriangle(*baseline, *T, RADIUS, LCList); //the line is there, so there is a triangle, but only one. 1478 1480 } … … 1491 1493 void Tesselation::AddCandidatePolygon(CandidateForTesselation CandidateLine, const double RADIUS, const LinkedCell_deprecated *LC) 1492 1494 { 1493 Info FunctionInfo(__func__);1495 //Info FunctionInfo(__func__); 1494 1496 Vector Center; 1495 1497 TesselPoint * const TurningPoint = CandidateLine.BaseLine->endpoints[0]->node; … … 1505 1507 TesselPointList *connectedClosestPoints = GetCircleOfSetOfPoints(&SetOfNeighbours, TurningPoint, CandidateLine.BaseLine->endpoints[1]->node->getPosition()); 1506 1508 1507 LOG(0, "List of Candidates for Turning Point " << *TurningPoint << ":"); 1508 for (TesselPointList::iterator TesselRunner = connectedClosestPoints->begin(); TesselRunner != connectedClosestPoints->end(); ++TesselRunner) 1509 LOG(0, " " << **TesselRunner); 1509 { 1510 std::stringstream output; 1511 for (TesselPointList::iterator TesselRunner = connectedClosestPoints->begin(); TesselRunner != connectedClosestPoints->end(); ++TesselRunner) 1512 output << **TesselRunner; 1513 LOG(3, "DEBUG: List of Candidates for Turning Point " << *TurningPoint << ":"); 1514 } 1510 1515 1511 1516 // go through all angle-sorted candidates (in degenerate n-nodes case we may have to add multiple triangles) … … 1514 1519 Sprinter++; 1515 1520 while (Sprinter != connectedClosestPoints->end()) { 1516 LOG( 0, "Current Runner is " << *(*Runner) << " and sprinter is " << *(*Sprinter) << ".");1521 LOG(3, "DEBUG: Current Runner is " << *(*Runner) << " and sprinter is " << *(*Sprinter) << "."); 1517 1522 1518 1523 AddTesselationPoint(TurningPoint, 0); … … 1527 1532 // fill the internal open lines with its respective candidate (otherwise lines in degenerate case are not picked) 1528 1533 FindDegeneratedCandidatesforOpenLines(*Sprinter, &CandidateLine.OptCenter); // Assume BTS contains last triangle 1529 LOG( 0, "There are still more triangles to add.");1534 LOG(2, "DEBUG: There are still more triangles to add."); 1530 1535 } 1531 1536 // pick candidates for other open lines as well … … 1535 1540 if (CheckDegeneracy(CandidateLine, RADIUS, LC)) { 1536 1541 // add normal and degenerate triangles 1537 LOG( 1, "Triangle of endpoints " << *TPS[0] << "," << *TPS[1] << " and " << *TPS[2] << " is degenerated, adding both sides.");1542 LOG(3, "DEBUG: Triangle of endpoints " << *TPS[0] << "," << *TPS[1] << " and " << *TPS[2] << " is degenerated, adding both sides."); 1538 1543 AddCandidateTriangle(CandidateLine, OtherOpt); 1539 1544 … … 1555 1560 void Tesselation::FindDegeneratedCandidatesforOpenLines(TesselPoint * const Sprinter, const Vector * const OptCenter) 1556 1561 { 1557 Info FunctionInfo(__func__);1562 //Info FunctionInfo(__func__); 1558 1563 1559 1564 pair<LineMap::iterator, LineMap::iterator> FindPair = TPS[0]->lines.equal_range(TPS[2]->node->getNr()); 1560 1565 for (LineMap::const_iterator FindLine = FindPair.first; FindLine != FindPair.second; FindLine++) { 1561 LOG( 1, "INFO: Checking line " << *(FindLine->second) << " ...");1566 LOG(4, "DEBUG: Checking line " << *(FindLine->second) << " ..."); 1562 1567 // If there is a line with less than two attached triangles, we don't need a new line. 1563 1568 if (FindLine->second->triangles.size() == 1) { 1564 1569 CandidateMap::iterator Finder = OpenLines.find(FindLine->second); 1565 1570 if (!Finder->second->pointlist.empty()) 1566 LOG( 1, "INFO: line " << *(FindLine->second) << " is open with candidate " << **(Finder->second->pointlist.begin()) << ".");1571 LOG(4, "DEBUG: line " << *(FindLine->second) << " is open with candidate " << **(Finder->second->pointlist.begin()) << "."); 1567 1572 else { 1568 LOG( 1, "INFO: line " << *(FindLine->second) << " is open with no candidate, setting to next Sprinter" << (*Sprinter));1573 LOG(4, "DEBUG: line " << *(FindLine->second) << " is open with no candidate, setting to next Sprinter" << (*Sprinter)); 1569 1574 Finder->second->T = BTS; // is last triangle 1570 1575 Finder->second->pointlist.push_back(Sprinter); … … 1585 1590 void Tesselation::AddDegeneratedTriangle(CandidateForTesselation &CandidateLine, const double RADIUS, const LinkedCell_deprecated *LC) 1586 1591 { 1587 Info FunctionInfo(__func__);1592 //Info FunctionInfo(__func__); 1588 1593 Vector Center; 1589 1594 CandidateMap::const_iterator CandidateCheck = OpenLines.end(); … … 1591 1596 1592 1597 /// 1. Create or pick the lines for the first triangle 1593 LOG( 0, "INFO: Creating/Picking lines for first triangle ...");1598 LOG(3, "DEBUG: Creating/Picking lines for first triangle ..."); 1594 1599 for (int i = 0; i < 3; i++) { 1595 1600 BLS[i] = NULL; 1596 LOG( 0, "Current line is between " << *TPS[(i + 0) % 3] << " and " << *TPS[(i + 1) % 3] << ":");1601 LOG(3, "DEBUG: Current line is between " << *TPS[(i + 0) % 3] << " and " << *TPS[(i + 1) % 3] << ":"); 1597 1602 AddTesselationLine(&CandidateLine.OptCenter, TPS[(i + 2) % 3], TPS[(i + 0) % 3], TPS[(i + 1) % 3], i); 1598 1603 } 1599 1604 1600 1605 /// 2. create the first triangle and NormalVector and so on 1601 LOG( 0, "INFO: Adding first triangle with center at " << CandidateLine.OptCenter << " ...");1606 LOG(3, "DEBUG: Adding first triangle with center at " << CandidateLine.OptCenter << " ..."); 1602 1607 BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount); 1603 1608 AddTesselationTriangle(); … … 1610 1615 // give some verbose output about the whole procedure 1611 1616 if (CandidateLine.T != NULL) 1612 LOG( 0, "--> New triangle with " << *BTS << " and normal vector " << BTS->NormalVector << ", from " << *CandidateLine.T << " and angle " << CandidateLine.ShortestAngle << ".");1617 LOG(2, "DEBUG: --> New triangle with " << *BTS << " and normal vector " << BTS->NormalVector << ", from " << *CandidateLine.T << " and angle " << CandidateLine.ShortestAngle << "."); 1613 1618 else 1614 LOG( 0, "--> New starting triangle with " << *BTS << " and normal vector " << BTS->NormalVector << " and no top triangle.");1619 LOG(2, "DEBUG: --> New starting triangle with " << *BTS << " and normal vector " << BTS->NormalVector << " and no top triangle."); 1615 1620 triangle = BTS; 1616 1621 1617 1622 /// 3. Gather candidates for each new line 1618 LOG( 0, "INFO: Adding candidates to new lines ...");1623 LOG(3, "DEBUG: Adding candidates to new lines ..."); 1619 1624 for (int i = 0; i < 3; i++) { 1620 LOG( 0, "Current line is between " << *TPS[(i + 0) % 3] << " and " << *TPS[(i + 1) % 3] << ":");1625 LOG(4, "DEBUG: Current line is between " << *TPS[(i + 0) % 3] << " and " << *TPS[(i + 1) % 3] << ":"); 1621 1626 CandidateCheck = OpenLines.find(BLS[i]); 1622 1627 if ((CandidateCheck != OpenLines.end()) && (CandidateCheck->second->pointlist.empty())) { … … 1628 1633 1629 1634 /// 4. Create or pick the lines for the second triangle 1630 LOG( 0, "INFO: Creating/Picking lines for second triangle ...");1635 LOG(3, "DEBUG: Creating/Picking lines for second triangle ..."); 1631 1636 for (int i = 0; i < 3; i++) { 1632 LOG( 0, "Current line is between " << *TPS[(i + 0) % 3] << " and " << *TPS[(i + 1) % 3] << ":");1637 LOG(4, "DEBUG: Current line is between " << *TPS[(i + 0) % 3] << " and " << *TPS[(i + 1) % 3] << ":"); 1633 1638 AddTesselationLine(&CandidateLine.OtherOptCenter, TPS[(i + 2) % 3], TPS[(i + 0) % 3], TPS[(i + 1) % 3], i); 1634 1639 } 1635 1640 1636 1641 /// 5. create the second triangle and NormalVector and so on 1637 LOG( 0, "INFO: Adding second triangle with center at " << CandidateLine.OtherOptCenter << " ...");1642 LOG(3, "DEBUG: Adding second triangle with center at " << CandidateLine.OtherOptCenter << " ..."); 1638 1643 BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount); 1639 1644 AddTesselationTriangle(); … … 1645 1650 // give some verbose output about the whole procedure 1646 1651 if (CandidateLine.T != NULL) 1647 LOG( 0, "--> New degenerate triangle with " << *BTS << " and normal vector " << BTS->NormalVector << ", from " << *CandidateLine.T << " and angle " << CandidateLine.ShortestAngle << ".");1652 LOG(2, "DEBUG: --> New degenerate triangle with " << *BTS << " and normal vector " << BTS->NormalVector << ", from " << *CandidateLine.T << " and angle " << CandidateLine.ShortestAngle << "."); 1648 1653 else 1649 LOG( 0, "--> New degenerate starting triangle with " << *BTS << " and normal vector " << BTS->NormalVector << " and no top triangle.");1654 LOG(2, "DEBUG: --> New degenerate starting triangle with " << *BTS << " and normal vector " << BTS->NormalVector << " and no top triangle."); 1650 1655 1651 1656 /// 6. Adding triangle to new lines 1652 LOG( 0, "INFO: Adding second triangles to new lines ...");1657 LOG(3, "DEBUG: Adding second triangles to new lines ..."); 1653 1658 for (int i = 0; i < 3; i++) { 1654 LOG( 0, "Current line is between " << *TPS[(i + 0) % 3] << " and " << *TPS[(i + 1) % 3] << ":");1659 LOG(4, "DEBUG: Current line is between " << *TPS[(i + 0) % 3] << " and " << *TPS[(i + 1) % 3] << ":"); 1655 1660 CandidateCheck = OpenLines.find(BLS[i]); 1656 1661 if ((CandidateCheck != OpenLines.end()) && (CandidateCheck->second->pointlist.empty())) { … … 1669 1674 void Tesselation::AddCandidateTriangle(CandidateForTesselation &CandidateLine, enum centers type) 1670 1675 { 1671 Info FunctionInfo(__func__);1676 //Info FunctionInfo(__func__); 1672 1677 Vector Center; 1673 1678 Vector *OptCenter = (type == Opt) ? &CandidateLine.OptCenter : &CandidateLine.OtherOptCenter; … … 1690 1695 // give some verbose output about the whole procedure 1691 1696 if (CandidateLine.T != NULL) 1692 LOG( 0, "--> New" << ((type == OtherOpt) ? " degenerate " : " ") << "triangle with " << *BTS << " and normal vector " << BTS->NormalVector << ", from " << *CandidateLine.T << " and angle " << CandidateLine.ShortestAngle << ".");1697 LOG(2, "INFO: --> New" << ((type == OtherOpt) ? " degenerate " : " ") << "triangle with " << *BTS << " and normal vector " << BTS->NormalVector << ", from " << *CandidateLine.T << " and angle " << CandidateLine.ShortestAngle << "."); 1693 1698 else 1694 LOG( 0, "--> New" << ((type == OtherOpt) ? " degenerate " : " ") << "starting triangle with " << *BTS << " and normal vector " << BTS->NormalVector << " and no top triangle.");1699 LOG(2, "INFO: --> New" << ((type == OtherOpt) ? " degenerate " : " ") << "starting triangle with " << *BTS << " and normal vector " << BTS->NormalVector << " and no top triangle."); 1695 1700 } 1696 1701 ; … … 1705 1710 class BoundaryPointSet *Tesselation::IsConvexRectangle(class BoundaryLineSet *Base) 1706 1711 { 1707 Info FunctionInfo(__func__);1712 //Info FunctionInfo(__func__); 1708 1713 class BoundaryPointSet *Spot = NULL; 1709 1714 class BoundaryLineSet *OtherBase; … … 1717 1722 OtherBase = new class BoundaryLineSet(BPS, -1); 1718 1723 1719 LOG( 1, "INFO: Current base line is " << *Base << ".");1720 LOG( 1, "INFO: Other base line is " << *OtherBase << ".");1724 LOG(3, "DEBUG: Current base line is " << *Base << "."); 1725 LOG(3, "DEBUG: Other base line is " << *OtherBase << "."); 1721 1726 1722 1727 // get the closest point on each line to the other line … … 1736 1741 delete (ClosestPoint); 1737 1742 if ((distance[0] * distance[1]) > 0) { // have same sign? 1738 LOG( 1, "REJECT: Both SKPs have same sign: " << distance[0] << " and " << distance[1] << ". " << *Base << "' rectangle is concave.");1743 LOG(4, "REJECT: Both SKPs have same sign: " << distance[0] << " and " << distance[1] << ". " << *Base << "' rectangle is concave."); 1739 1744 if (distance[0] < distance[1]) { 1740 1745 Spot = Base->endpoints[0]; … … 1744 1749 return Spot; 1745 1750 } else { // different sign, i.e. we are in between 1746 LOG( 0, "ACCEPT: Rectangle of triangles of base line " << *Base << " is convex.");1751 LOG(3, "ACCEPT: Rectangle of triangles of base line " << *Base << " is convex."); 1747 1752 return NULL; 1748 1753 } … … 1753 1758 void Tesselation::PrintAllBoundaryPoints(ofstream *out) const 1754 1759 { 1755 Info FunctionInfo(__func__);1760 //Info FunctionInfo(__func__); 1756 1761 // print all lines 1757 LOG(0, "Printing all boundary points for debugging:");1762 std::stringstream output; 1758 1763 for (PointMap::const_iterator PointRunner = PointsOnBoundary.begin(); PointRunner != PointsOnBoundary.end(); PointRunner++) 1759 LOG(0, *(PointRunner->second)); 1764 output << " " << *(PointRunner->second); 1765 LOG(3, "DEBUG: Printing all boundary points for debugging:" << output.str()); 1760 1766 } 1761 1767 ; … … 1763 1769 void Tesselation::PrintAllBoundaryLines(ofstream *out) const 1764 1770 { 1765 Info FunctionInfo(__func__);1771 //Info FunctionInfo(__func__); 1766 1772 // print all lines 1767 LOG(0, "Printing all boundary lines for debugging:");1773 std::stringstream output; 1768 1774 for (LineMap::const_iterator LineRunner = LinesOnBoundary.begin(); LineRunner != LinesOnBoundary.end(); LineRunner++) 1769 LOG(0, *(LineRunner->second)); 1775 output << " " << *(LineRunner->second); 1776 LOG(3, "DEBUG: Printing all boundary lines for debugging:" << output.str()); 1770 1777 } 1771 1778 ; … … 1773 1780 void Tesselation::PrintAllBoundaryTriangles(ofstream *out) const 1774 1781 { 1775 Info FunctionInfo(__func__);1782 //Info FunctionInfo(__func__); 1776 1783 // print all triangles 1777 LOG(0, "Printing all boundary triangles for debugging:");1784 std::stringstream output; 1778 1785 for (TriangleMap::const_iterator TriangleRunner = TrianglesOnBoundary.begin(); TriangleRunner != TrianglesOnBoundary.end(); TriangleRunner++) 1779 LOG(0, *(TriangleRunner->second)); 1786 output << " " << *(TriangleRunner->second); 1787 LOG(3, "DEBUG: Printing all boundary triangles for debugging:" << output.str()); 1780 1788 } 1781 1789 ; … … 1788 1796 double Tesselation::PickFarthestofTwoBaselines(class BoundaryLineSet *Base) 1789 1797 { 1790 Info FunctionInfo(__func__);1798 //Info FunctionInfo(__func__); 1791 1799 class BoundaryLineSet *OtherBase; 1792 1800 Vector *ClosestPoint[2]; … … 1800 1808 OtherBase = new class BoundaryLineSet(BPS, -1); 1801 1809 1802 LOG( 0, "INFO: Current base line is " << *Base << ".");1803 LOG( 0, "INFO: Other base line is " << *OtherBase << ".");1810 LOG(3, "DEBUG: Current base line is " << *Base << "."); 1811 LOG(3, "DEBUG: Other base line is " << *OtherBase << "."); 1804 1812 1805 1813 // get the closest point on each line to the other line … … 1819 1827 1820 1828 if (Distance.NormSquared() < MYEPSILON) { // check for intersection 1821 LOG( 0, "REJECT: Both lines have an intersection: Nothing to do.");1829 LOG(3, "REJECT: Both lines have an intersection: Nothing to do."); 1822 1830 return false; 1823 1831 } else { // check for sign against BaseLineNormal … … 1829 1837 } 1830 1838 for (TriangleMap::iterator runner = Base->triangles.begin(); runner != Base->triangles.end(); runner++) { 1831 LOG( 1, "INFO: Adding NormalVector " << runner->second->NormalVector << " of triangle " << *(runner->second) << ".");1839 LOG(4, "DEBUG: Adding NormalVector " << runner->second->NormalVector << " of triangle " << *(runner->second) << "."); 1832 1840 BaseLineNormal += (runner->second->NormalVector); 1833 1841 } … … 1835 1843 1836 1844 if (Distance.ScalarProduct(BaseLineNormal) > MYEPSILON) { // Distance points outwards, hence OtherBase higher than Base -> flip 1837 LOG( 0, "ACCEPT: Other base line would be higher: Flipping baseline.");1845 LOG(3, "ACCEPT: Other base line would be higher: Flipping baseline."); 1838 1846 // calculate volume summand as a general tetraeder 1839 1847 return volume; 1840 1848 } else { // Base higher than OtherBase -> do nothing 1841 LOG( 0, "REJECT: Base line is higher: Nothing to do.");1849 LOG(3, "REJECT: Base line is higher: Nothing to do."); 1842 1850 return 0.; 1843 1851 } … … 1855 1863 class BoundaryLineSet * Tesselation::FlipBaseline(class BoundaryLineSet *Base) 1856 1864 { 1857 Info FunctionInfo(__func__);1865 //Info FunctionInfo(__func__); 1858 1866 class BoundaryLineSet *OldLines[4], *NewLine; 1859 1867 class BoundaryPointSet *OldPoints[2]; … … 1884 1892 1885 1893 // print OldLines and OldPoints for debugging 1886 if (DoLog( 0)) {1894 if (DoLog(3)) { 1887 1895 std::stringstream output; 1888 output << "The four old lines are: ";1889 1896 for (TriangleMap::iterator runner = Base->triangles.begin(); runner != Base->triangles.end(); runner++) 1890 1897 for (int j = 0; j < 3; j++) // all of their endpoints and baselines 1891 1898 if (runner->second->lines[j] != Base) // pick not the central baseline 1892 1899 output << *runner->second->lines[j] << "\t"; 1893 LOG( 0,output.str());1894 } 1895 if (DoLog( 0)) {1900 LOG(3, "DEBUG: The four old lines are: " << output.str()); 1901 } 1902 if (DoLog(3)) { 1896 1903 std::stringstream output; 1897 output << "The two old points are: ";1898 1904 for (TriangleMap::iterator runner = Base->triangles.begin(); runner != Base->triangles.end(); runner++) 1899 1905 for (int j = 0; j < 3; j++) // all of their endpoints and baselines 1900 1906 if (!Base->ContainsBoundaryPoint(runner->second->endpoints[j])) // and neither of its endpoints 1901 1907 output << *runner->second->endpoints[j] << "\t"; 1902 LOG( 0,output.str());1908 LOG(3, "DEBUG: The two old points are: " << output.str()); 1903 1909 } 1904 1910 … … 1930 1936 1931 1937 // remove triangles and baseline removes itself 1932 LOG( 0, "INFO: Deleting baseline " << *Base << " from global list.");1938 LOG(3, "DEBUG: Deleting baseline " << *Base << " from global list."); 1933 1939 OldBaseLineNr = Base->Nr; 1934 1940 m = 0; … … 1939 1945 // .. then delete each triangle (which deletes the line as well) 1940 1946 for (list <BoundaryTriangleSet *>::iterator runner = TrianglesOfBase.begin(); !TrianglesOfBase.empty(); runner = TrianglesOfBase.begin()) { 1941 LOG( 0, "INFO: Deleting triangle " << *(*runner) << ".");1947 LOG(3, "DEBUG: Deleting triangle " << *(*runner) << "."); 1942 1948 OldTriangleNrs[m++] = (*runner)->Nr; 1943 1949 RemoveTesselationTriangle((*runner)); … … 1950 1956 NewLine = new class BoundaryLineSet(BPS, OldBaseLineNr); 1951 1957 LinesOnBoundary.insert(LinePair(OldBaseLineNr, NewLine)); // no need for check for unique insertion as NewLine is definitely a new one 1952 LOG( 0, "INFO: Created new baseline " << *NewLine << ".");1958 LOG(3, "DEBUG: Created new baseline " << *NewLine << "."); 1953 1959 1954 1960 // construct new triangles with flipped baseline … … 1965 1971 BTS->GetNormalVector(BaseLineNormal); 1966 1972 AddTesselationTriangle(OldTriangleNrs[0]); 1967 LOG( 0, "INFO: Created new triangle " << *BTS << ".");1973 LOG(3, "DEBUG: Created new triangle " << *BTS << "."); 1968 1974 1969 1975 BLS[0] = (i == 2 ? OldLines[3] : OldLines[2]); … … 1973 1979 BTS->GetNormalVector(BaseLineNormal); 1974 1980 AddTesselationTriangle(OldTriangleNrs[1]); 1975 LOG( 0, "INFO: Created new triangle " << *BTS << ".");1981 LOG(3, "DEBUG: Created new triangle " << *BTS << "."); 1976 1982 } else { 1977 1983 ELOG(0, "The four old lines do not connect, something's utterly wrong here!"); … … 1993 1999 void Tesselation::FindSecondPointForTesselation(TesselPoint* a, Vector Oben, TesselPoint*& OptCandidate, double Storage[3], double RADIUS, const LinkedCell_deprecated *LC) 1994 2000 { 1995 Info FunctionInfo(__func__);2001 //Info FunctionInfo(__func__); 1996 2002 Vector AngleCheck; 1997 2003 class TesselPoint* Candidate = NULL; … … 2014 2020 Nupper[i] = ((N[i] + 1) < LC->N[i]) ? N[i] + 1 : LC->N[i] - 1; 2015 2021 } 2016 LOG( 0, "LC Intervals from [" << N[0] << "<->" << LC->N[0] << ", " << N[1] << "<->" << LC->N[1] << ", " << N[2] << "<->" << LC->N[2] << "] :" << " [" << Nlower[0] << "," << Nupper[0] << "], " << " [" << Nlower[1] << "," << Nupper[1] << "], " << " [" << Nlower[2] << "," << Nupper[2] << "], ");2022 LOG(3, "DEBUG: LC Intervals from [" << N[0] << "<->" << LC->N[0] << ", " << N[1] << "<->" << LC->N[1] << ", " << N[2] << "<->" << LC->N[2] << "] :" << " [" << Nlower[0] << "," << Nupper[0] << "], " << " [" << Nlower[1] << "," << Nupper[1] << "], " << " [" << Nlower[2] << "," << Nupper[2] << "], "); 2017 2023 2018 2024 for (LC->n[0] = Nlower[0]; LC->n[0] <= Nupper[0]; LC->n[0]++) … … 2048 2054 if (angle < Storage[0]) { 2049 2055 //LOG(1, "INFO: Old values of Storage is " << Storage[0] << ", " << Storage[1]); 2050 LOG( 1, "INFO: Current candidate is " << *Candidate << ": Is a better candidate with distance " << norm << " and angle " << angle << " to oben " << Oben << ".");2056 LOG(4, "DEBUG: Current candidate is " << *Candidate << ": Is a better candidate with distance " << norm << " and angle " << angle << " to oben " << Oben << "."); 2051 2057 OptCandidate = Candidate; 2052 2058 Storage[0] = angle; 2053 //LOG( 1, "INFO: Changing something in Storage is " << Storage[0] << ", " << Storage[1]);2059 //LOG(4, "DEBUG: Changing something in Storage is " << Storage[0] << ", " << Storage[1]); 2054 2060 } else { 2055 //LOG( 1, "INFO: Current candidate is " << *Candidate << ": Looses with angle " << angle << " to a better candidate " << *OptCandidate);2061 //LOG(4, "DEBUG: Current candidate is " << *Candidate << ": Looses with angle " << angle << " to a better candidate " << *OptCandidate); 2056 2062 } 2057 2063 } else { 2058 //LOG( 1, "INFO: Current candidate is " << *Candidate << ": Refused due to Radius " << norm);2064 //LOG(4, "DEBUG: Current candidate is " << *Candidate << ": Refused due to Radius " << norm); 2059 2065 } 2060 2066 } else { 2061 //LOG( 1, "INFO: Current candidate is " << *Candidate << ": Candidate is equal to first endpoint." << *a << ".");2067 //LOG(4, "DEBUG: Current candidate is " << *Candidate << ": Candidate is equal to first endpoint." << *a << "."); 2062 2068 } 2063 2069 } 2064 2070 } else { 2065 LOG( 0, "Linked cell list is empty.");2071 LOG(4, "DEBUG: Linked cell list is empty."); 2066 2072 } 2067 2073 } … … 2101 2107 void Tesselation::FindThirdPointForTesselation(const Vector &NormalVector, const Vector &SearchDirection, const Vector &OldSphereCenter, CandidateForTesselation &CandidateLine, const class BoundaryPointSet * const ThirdPoint, const double RADIUS, const LinkedCell_deprecated *LC) const 2102 2108 { 2103 Info FunctionInfo(__func__);2109 //Info FunctionInfo(__func__); 2104 2110 Vector CircleCenter; // center of the circle, i.e. of the band of sphere's centers 2105 2111 Vector CirclePlaneNormal; // normal vector defining the plane this circle lives in … … 2118 2124 TesselPoint *Candidate = NULL; 2119 2125 2120 LOG( 1, "INFO: NormalVector of BaseTriangle is " << NormalVector << ".");2126 LOG(3, "DEBUG: NormalVector of BaseTriangle is " << NormalVector << "."); 2121 2127 2122 2128 // copy old center … … 2140 2146 CircleRadius = RADIUS * RADIUS - radius; 2141 2147 CirclePlaneNormal.Normalize(); 2142 LOG( 1, "INFO: CircleCenter is at " << CircleCenter << ", CirclePlaneNormal is " << CirclePlaneNormal << " with circle radius " << sqrt(CircleRadius) << ".");2148 LOG(3, "DEBUG: CircleCenter is at " << CircleCenter << ", CirclePlaneNormal is " << CirclePlaneNormal << " with circle radius " << sqrt(CircleRadius) << "."); 2143 2149 2144 2150 // test whether old center is on the band's plane … … 2149 2155 radius = RelativeOldSphereCenter.NormSquared(); 2150 2156 if (fabs(radius - CircleRadius) < HULLEPSILON) { 2151 LOG( 1, "INFO: RelativeOldSphereCenter is at " << RelativeOldSphereCenter << ".");2157 LOG(3, "DEBUG: RelativeOldSphereCenter is at " << RelativeOldSphereCenter << "."); 2152 2158 2153 2159 // check SearchDirection 2154 LOG( 1, "INFO: SearchDirection is " << SearchDirection << ".");2160 LOG(3, "DEBUG: SearchDirection is " << SearchDirection << "."); 2155 2161 if (fabs(RelativeOldSphereCenter.ScalarProduct(SearchDirection)) > HULLEPSILON) { // rotated the wrong way! 2156 2162 ELOG(1, "SearchDirection and RelativeOldSphereCenter are not orthogonal!"); … … 2167 2173 } 2168 2174 // then go through the current and all neighbouring cells and check the contained points for possible candidates 2169 // if (DoLog( 0)) {2175 // if (DoLog(3)) { 2170 2176 // std::stringstream output; 2171 2177 // output << "LC Intervals:"; … … 2188 2194 2189 2195 // check for three unique points 2190 LOG( 2, "INFO: Current Candidate is " << *Candidate << " for BaseLine " << *CandidateLine.BaseLine << " with OldSphereCenter " << OldSphereCenter << ".");2196 LOG(4, "DEBUG: Current Candidate is " << *Candidate << " for BaseLine " << *CandidateLine.BaseLine << " with OldSphereCenter " << OldSphereCenter << "."); 2191 2197 if ((Candidate != CandidateLine.BaseLine->endpoints[0]->node) && (Candidate != CandidateLine.BaseLine->endpoints[1]->node)) { 2192 2198 2193 2199 // find center on the plane 2194 2200 GetCenterofCircumcircle(NewPlaneCenter, CandidateLine.BaseLine->endpoints[0]->node->getPosition(), CandidateLine.BaseLine->endpoints[1]->node->getPosition(), Candidate->getPosition()); 2195 LOG( 1, "INFO: NewPlaneCenter is " << NewPlaneCenter << ".");2201 LOG(3, "DEBUG: NewPlaneCenter is " << NewPlaneCenter << "."); 2196 2202 2197 2203 try { … … 2199 2205 (CandidateLine.BaseLine->endpoints[1]->node->getPosition()), 2200 2206 (Candidate->getPosition())).getNormal(); 2201 LOG( 1, "INFO: NewNormalVector is " << NewNormalVector << ".");2207 LOG(3, "DEBUG: NewNormalVector is " << NewNormalVector << "."); 2202 2208 radius = CandidateLine.BaseLine->endpoints[0]->node->DistanceSquared(NewPlaneCenter); 2203 LOG( 1, "INFO: CircleCenter is at " << CircleCenter << ", CirclePlaneNormal is " << CirclePlaneNormal << " with circle radius " << sqrt(CircleRadius) << ".");2204 LOG( 1, "INFO: SearchDirection is " << SearchDirection << ".");2205 LOG( 1, "INFO: Radius of CircumCenterCircle is " << radius << ".");2209 LOG(3, "DEBUG: CircleCenter is at " << CircleCenter << ", CirclePlaneNormal is " << CirclePlaneNormal << " with circle radius " << sqrt(CircleRadius) << "."); 2210 LOG(3, "DEBUG: SearchDirection is " << SearchDirection << "."); 2211 LOG(3, "DEBUG: Radius of CircumCenterCircle is " << radius << "."); 2206 2212 if (radius < RADIUS * RADIUS) { 2207 2213 otherradius = CandidateLine.BaseLine->endpoints[1]->node->DistanceSquared(NewPlaneCenter); … … 2212 2218 helper = NewNormalVector; 2213 2219 helper.Scale(sqrt(RADIUS * RADIUS - radius)); 2214 LOG( 2, "INFO: Distance of NewPlaneCenter " << NewPlaneCenter << " to either NewSphereCenter is " << helper.Norm() << " of vector " << helper << " with sphere radius " << RADIUS << ".");2220 LOG(4, "DEBUG: Distance of NewPlaneCenter " << NewPlaneCenter << " to either NewSphereCenter is " << helper.Norm() << " of vector " << helper << " with sphere radius " << RADIUS << "."); 2215 2221 NewSphereCenter += helper; 2216 LOG( 2, "INFO: NewSphereCenter is at " << NewSphereCenter << ".");2222 LOG(4, "DEBUG: NewSphereCenter is at " << NewSphereCenter << "."); 2217 2223 // OtherNewSphereCenter is created by the same vector just in the other direction 2218 2224 helper.Scale(-1.); 2219 2225 OtherNewSphereCenter += helper; 2220 LOG( 2, "INFO: OtherNewSphereCenter is at " << OtherNewSphereCenter << ".");2226 LOG(4, "DEBUG: OtherNewSphereCenter is at " << OtherNewSphereCenter << "."); 2221 2227 alpha = GetPathLengthonCircumCircle(CircleCenter, CirclePlaneNormal, CircleRadius, NewSphereCenter, OldSphereCenter, NormalVector, SearchDirection, HULLEPSILON); 2222 2228 Otheralpha = GetPathLengthonCircumCircle(CircleCenter, CirclePlaneNormal, CircleRadius, OtherNewSphereCenter, OldSphereCenter, NormalVector, SearchDirection, HULLEPSILON); … … 2239 2245 if ((CandidateLine.ShortestAngle - HULLEPSILON) < alpha) { 2240 2246 CandidateLine.pointlist.push_back(Candidate); 2241 LOG( 0, "ACCEPT: We have found an equally good candidate: " << *(Candidate) << " with " << alpha << " and circumsphere's center at " << CandidateLine.OptCenter << ".");2247 LOG(2, "ACCEPT: We have found an equally good candidate: " << *(Candidate) << " with " << alpha << " and circumsphere's center at " << CandidateLine.OptCenter << "."); 2242 2248 } else { 2243 2249 // remove all candidates from the list and then the list itself 2244 2250 CandidateLine.pointlist.clear(); 2245 2251 CandidateLine.pointlist.push_back(Candidate); 2246 LOG( 0, "ACCEPT: We have found a better candidate: " << *(Candidate) << " with " << alpha << " and circumsphere's center at " << CandidateLine.OptCenter << ".");2252 LOG(2, "ACCEPT: We have found a better candidate: " << *(Candidate) << " with " << alpha << " and circumsphere's center at " << CandidateLine.OptCenter << "."); 2247 2253 } 2248 2254 CandidateLine.ShortestAngle = alpha; 2249 LOG( 0, "INFO: There are " << CandidateLine.pointlist.size() << " candidates in the list now.");2255 LOG(2, "DEBUG: There are " << CandidateLine.pointlist.size() << " candidates in the list now."); 2250 2256 } else { 2251 2257 if ((Candidate != NULL) && (CandidateLine.pointlist.begin() != CandidateLine.pointlist.end())) { 2252 LOG( 1, "REJECT: Old candidate " << *(*CandidateLine.pointlist.begin()) << " with " << CandidateLine.ShortestAngle << " is better than new one " << *Candidate << " with " << alpha << " .");2258 LOG(3, "REJECT: Old candidate " << *(*CandidateLine.pointlist.begin()) << " with " << CandidateLine.ShortestAngle << " is better than new one " << *Candidate << " with " << alpha << " ."); 2253 2259 } else { 2254 LOG( 1, "REJECT: Candidate " << *Candidate << " with " << alpha << " was rejected.");2260 LOG(3, "REJECT: Candidate " << *Candidate << " with " << alpha << " was rejected."); 2255 2261 } 2256 2262 } … … 2259 2265 } 2260 2266 } else { 2261 LOG( 1, "REJECT: NewSphereCenter " << NewSphereCenter << " for " << *Candidate << " is too far away: " << radius << ".");2267 LOG(3, "REJECT: NewSphereCenter " << NewSphereCenter << " for " << *Candidate << " is too far away: " << radius << "."); 2262 2268 } 2263 2269 } 2264 2270 catch (LinearDependenceException &excp){ 2265 LOG( 1, boost::diagnostic_information(excp));2266 LOG( 1, "REJECT: Three points from " << *CandidateLine.BaseLine << " and Candidate " << *Candidate << " are linear-dependent.");2271 LOG(3, boost::diagnostic_information(excp)); 2272 LOG(3, "REJECT: Three points from " << *CandidateLine.BaseLine << " and Candidate " << *Candidate << " are linear-dependent."); 2267 2273 } 2268 2274 } else { 2269 2275 if (ThirdPoint != NULL) { 2270 LOG( 1, "REJECT: Base triangle " << *CandidateLine.BaseLine << " and " << *ThirdPoint << " contains Candidate " << *Candidate << ".");2276 LOG(3, "REJECT: Base triangle " << *CandidateLine.BaseLine << " and " << *ThirdPoint << " contains Candidate " << *Candidate << "."); 2271 2277 } else { 2272 LOG( 1, "REJECT: Base triangle " << *CandidateLine.BaseLine << " contains Candidate " << *Candidate << ".");2278 LOG(3, "REJECT: Base triangle " << *CandidateLine.BaseLine << " contains Candidate " << *Candidate << "."); 2273 2279 } 2274 2280 } … … 2281 2287 } else { 2282 2288 if (ThirdPoint != NULL) 2283 LOG( 1, "Circumcircle for base line " << *CandidateLine.BaseLine << " and third node " << *ThirdPoint << " is too big!");2289 LOG(3, "Circumcircle for base line " << *CandidateLine.BaseLine << " and third node " << *ThirdPoint << " is too big!"); 2284 2290 else 2285 LOG( 1, "Circumcircle for base line " << *CandidateLine.BaseLine << " is too big!");2286 } 2287 2288 LOG( 1, "INFO: Sorting candidate list ...");2291 LOG(3, "Circumcircle for base line " << *CandidateLine.BaseLine << " is too big!"); 2292 } 2293 2294 LOG(2, "DEBUG: Sorting candidate list ..."); 2289 2295 if (CandidateLine.pointlist.size() > 1) { 2290 2296 CandidateLine.pointlist.unique(); … … 2306 2312 class BoundaryPointSet *Tesselation::GetCommonEndpoint(const BoundaryLineSet * line1, const BoundaryLineSet * line2) const 2307 2313 { 2308 Info FunctionInfo(__func__);2314 //Info FunctionInfo(__func__); 2309 2315 const BoundaryLineSet * lines[2] = { line1, line2 }; 2310 2316 class BoundaryPointSet *node = NULL; … … 2334 2340 DistanceToPointMap * Tesselation::FindClosestBoundaryPointsToVector(const Vector &x, const LinkedCell_deprecated* LC) const 2335 2341 { 2336 Info FunctionInfo(__func__);2342 //Info FunctionInfo(__func__); 2337 2343 PointMap::const_iterator FindPoint; 2338 2344 int N[NDIM], Nlower[NDIM], Nupper[NDIM]; … … 2347 2353 for (int i = 0; i < NDIM; i++) // store indices of this cell 2348 2354 N[i] = LC->n[i]; 2349 LOG( 1, "INFO: Center cell is " << N[0] << ", " << N[1] << ", " << N[2] << " with No. " << LC->index << ".");2355 LOG(2, "DEBUG: Center cell is " << N[0] << ", " << N[1] << ", " << N[2] << " with No. " << LC->index << "."); 2350 2356 DistanceToPointMap * points = new DistanceToPointMap; 2351 2357 LC->GetNeighbourBounds(Nlower, Nupper); … … 2360 2366 if (FindPoint != PointsOnBoundary.end()) { 2361 2367 points->insert(DistanceToPointPair(FindPoint->second->node->DistanceSquared(x), FindPoint->second)); 2362 LOG( 1, "INFO: Putting " << *FindPoint->second << " into the list.");2368 LOG(3, "DEBUG: Putting " << *FindPoint->second << " into the list."); 2363 2369 } 2364 2370 } … … 2385 2391 BoundaryLineSet * Tesselation::FindClosestBoundaryLineToVector(const Vector &x, const LinkedCell_deprecated* LC) const 2386 2392 { 2387 Info FunctionInfo(__func__);2393 //Info FunctionInfo(__func__); 2388 2394 // get closest points 2389 2395 DistanceToPointMap * points = FindClosestBoundaryPointsToVector(x, LC); … … 2431 2437 // check whether closest line is "too close" :), then it's inside 2432 2438 if (ClosestLine == NULL) { 2433 LOG( 0, "Is the only point, no one else is closeby.");2439 LOG(2, "DEBUG: Is the only point, no one else is closeby."); 2434 2440 return NULL; 2435 2441 } … … 2445 2451 TriangleList * Tesselation::FindClosestTrianglesToVector(const Vector &x, const LinkedCell_deprecated* LC) const 2446 2452 { 2447 Info FunctionInfo(__func__);2453 //Info FunctionInfo(__func__); 2448 2454 // get closest points 2449 2455 DistanceToPointMap * points = FindClosestBoundaryPointsToVector(x, LC); … … 2511 2517 // check whether closest line is "too close" :), then it's inside 2512 2518 if (ClosestLines.empty()) { 2513 LOG( 0, "Is the only point, no one else is closeby.");2519 LOG(2, "DEBUG: Is the only point, no one else is closeby."); 2514 2520 return NULL; 2515 2521 } … … 2532 2538 class BoundaryTriangleSet * Tesselation::FindClosestTriangleToVector(const Vector &x, const LinkedCell_deprecated* LC) const 2533 2539 { 2534 Info FunctionInfo(__func__);2540 //Info FunctionInfo(__func__); 2535 2541 class BoundaryTriangleSet *result = NULL; 2536 2542 TriangleList *triangles = FindClosestTrianglesToVector(x, LC); … … 2595 2601 double Tesselation::GetDistanceSquaredToTriangle(const Vector &Point, const BoundaryTriangleSet* const triangle) const 2596 2602 { 2597 Info FunctionInfo(__func__);2603 //Info FunctionInfo(__func__); 2598 2604 Vector Center; 2599 2605 Vector helper; … … 2652 2658 double Tesselation::GetDistanceToSurface(const Vector &Point, const LinkedCell_deprecated* const LC) const 2653 2659 { 2654 Info FunctionInfo(__func__);2660 //Info FunctionInfo(__func__); 2655 2661 TriangleIntersectionList Intersections(Point, this, LC); 2656 2662 … … 2667 2673 BoundaryTriangleSet * Tesselation::GetClosestTriangleOnSurface(const Vector &Point, const LinkedCell_deprecated* const LC) const 2668 2674 { 2669 Info FunctionInfo(__func__);2675 //Info FunctionInfo(__func__); 2670 2676 TriangleIntersectionList Intersections(Point, this, LC); 2671 2677 … … 2682 2688 TesselPointSet * Tesselation::GetAllConnectedPoints(const TesselPoint* const Point) const 2683 2689 { 2684 Info FunctionInfo(__func__);2690 //Info FunctionInfo(__func__); 2685 2691 TesselPointSet *connectedPoints = new TesselPointSet; 2686 2692 class BoundaryPointSet *ReferencePoint = NULL; … … 2747 2753 TesselPointList * Tesselation::GetCircleOfConnectedTriangles(TesselPointSet *SetOfNeighbours, const TesselPoint* const Point, const Vector &Reference) const 2748 2754 { 2749 Info FunctionInfo(__func__);2755 //Info FunctionInfo(__func__); 2750 2756 map<double, TesselPoint*> anglesOfPoints; 2751 2757 TesselPointList *connectedCircle = new TesselPointList; … … 2773 2779 } 2774 2780 PlaneNormal.Scale(1.0 / triangles->size()); 2775 LOG( 1, "INFO: Calculated PlaneNormal of all circle points is " << PlaneNormal << ".");2781 LOG(4, "DEBUG: Calculated PlaneNormal of all circle points is " << PlaneNormal << "."); 2776 2782 PlaneNormal.Normalize(); 2777 2783 … … 2780 2786 AngleZero.ProjectOntoPlane(PlaneNormal); 2781 2787 if ((AngleZero.NormSquared() < MYEPSILON)) { 2782 LOG( 1, "Using alternatively " << (*SetOfNeighbours->begin())->getPosition() << " as angle 0 referencer.");2788 LOG(4, "DEBUG: Using alternatively " << (*SetOfNeighbours->begin())->getPosition() << " as angle 0 referencer."); 2783 2789 AngleZero = ((*SetOfNeighbours->begin())->getPosition()) - (Point->getPosition()); 2784 2790 AngleZero.ProjectOntoPlane(PlaneNormal); … … 2788 2794 } 2789 2795 } 2790 LOG( 1, "INFO: Reference vector on this plane representing angle 0 is " << AngleZero << ".");2796 LOG(4, "DEBUG: Reference vector on this plane representing angle 0 is " << AngleZero << "."); 2791 2797 if (AngleZero.NormSquared() > MYEPSILON) 2792 2798 OrthogonalVector = Plane(PlaneNormal, AngleZero,0).getNormal(); 2793 2799 else 2794 2800 OrthogonalVector.MakeNormalTo(PlaneNormal); 2795 LOG( 1, "INFO: OrthogonalVector on plane is " << OrthogonalVector << ".");2801 LOG(4, "DEBUG: OrthogonalVector on plane is " << OrthogonalVector << "."); 2796 2802 2797 2803 // go through all connected points and calculate angle … … 2800 2806 helper.ProjectOntoPlane(PlaneNormal); 2801 2807 double angle = GetAngle(helper, AngleZero, OrthogonalVector); 2802 LOG( 0, "INFO: Calculated angle is" << angle << " for point " << **listRunner << ".");2808 LOG(4, "DEBUG" << angle << " for point " << **listRunner << "."); 2803 2809 anglesOfPoints.insert(pair<double, TesselPoint*> (angle, (*listRunner))); 2804 2810 } … … 2824 2830 TesselPointList * Tesselation::GetCircleOfSetOfPoints(TesselPointSet *SetOfNeighbours, const TesselPoint* const Point, const Vector &Reference) const 2825 2831 { 2826 Info FunctionInfo(__func__);2832 //Info FunctionInfo(__func__); 2827 2833 map<double, TesselPoint*> anglesOfPoints; 2828 2834 TesselPointList *connectedCircle = new TesselPointList; … … 2859 2865 ((*TesselB)->getPosition()), 2860 2866 ((*TesselC)->getPosition())).getNormal(); 2861 LOG( 0, "Making normal vector out of " << *(*TesselA) << ", " << *(*TesselB) << " and " << *(*TesselC) << ":" << helper);2867 LOG(5, "DEBUG: Making normal vector out of " << *(*TesselA) << ", " << *(*TesselB) << " and " << *(*TesselC) << ":" << helper); 2862 2868 counter++; 2863 2869 TesselA++; … … 2874 2880 // PlaneNormal.SubtractVector(¢er); 2875 2881 // PlaneNormal.Normalize(); 2876 LOG( 1, "INFO: Calculated plane normal of circle is " << PlaneNormal << ".");2882 LOG(4, "DEBUG: Calculated plane normal of circle is " << PlaneNormal << "."); 2877 2883 2878 2884 // construct one orthogonal vector … … 2882 2888 } 2883 2889 if ((Reference.IsZero()) || (AngleZero.NormSquared() < MYEPSILON )) { 2884 LOG( 1, "Using alternatively " << (*SetOfNeighbours->begin())->getPosition() << " as angle 0 referencer.");2890 LOG(4, "DEBUG: Using alternatively " << (*SetOfNeighbours->begin())->getPosition() << " as angle 0 referencer."); 2885 2891 AngleZero = ((*SetOfNeighbours->begin())->getPosition()) - (Point->getPosition()); 2886 2892 AngleZero.ProjectOntoPlane(PlaneNormal); … … 2890 2896 } 2891 2897 } 2892 LOG( 1, "INFO: Reference vector on this plane representing angle 0 is " << AngleZero << ".");2898 LOG(4, "DEBUG: Reference vector on this plane representing angle 0 is " << AngleZero << "."); 2893 2899 if (AngleZero.NormSquared() > MYEPSILON) 2894 2900 OrthogonalVector = Plane(PlaneNormal, AngleZero,0).getNormal(); 2895 2901 else 2896 2902 OrthogonalVector.MakeNormalTo(PlaneNormal); 2897 LOG( 1, "INFO: OrthogonalVector on plane is " << OrthogonalVector << ".");2903 LOG(4, "DEBUG: OrthogonalVector on plane is " << OrthogonalVector << "."); 2898 2904 2899 2905 // go through all connected points and calculate angle … … 2905 2911 if (angle > M_PI) // the correction is of no use here (and not desired) 2906 2912 angle = 2. * M_PI - angle; 2907 LOG( 0, "INFO: Calculated angle between " << helper << " and " << AngleZero << " is " << angle << " for point " << **listRunner << ".");2913 LOG(4, "DEBUG: Calculated angle between " << helper << " and " << AngleZero << " is " << angle << " for point " << **listRunner << "."); 2908 2914 InserterTest = anglesOfPoints.insert(pair<double, TesselPoint*> (angle, (*listRunner))); 2909 2915 if (!InserterTest.second) { … … 2928 2934 ListOfTesselPointList * Tesselation::GetPathsOfConnectedPoints(const TesselPoint* const Point) const 2929 2935 { 2930 Info FunctionInfo(__func__);2936 //Info FunctionInfo(__func__); 2931 2937 map<double, TesselPoint*> anglesOfPoints; 2932 2938 list<TesselPointList *> *ListOfPaths = new list<TesselPointList *> ; … … 3043 3049 ListOfTesselPointList * Tesselation::GetClosedPathsOfConnectedPoints(const TesselPoint* const Point) const 3044 3050 { 3045 Info FunctionInfo(__func__);3051 //Info FunctionInfo(__func__); 3046 3052 list<TesselPointList *> *ListofPaths = GetPathsOfConnectedPoints(Point); 3047 3053 list<TesselPointList *> *ListofClosedPaths = new list<TesselPointList *> ; … … 3107 3113 TriangleSet *Tesselation::GetAllTriangles(const BoundaryPointSet * const Point) const 3108 3114 { 3109 Info FunctionInfo(__func__);3115 //Info FunctionInfo(__func__); 3110 3116 TriangleSet *connectedTriangles = new TriangleSet; 3111 3117 … … 3147 3153 return 0.; 3148 3154 } else 3149 LOG( 0, "Removing point " << *point << " from tesselated boundary ...");3155 LOG(4, "DEBUG: Removing point " << *point << " from tesselated boundary ..."); 3150 3156 3151 3157 // copy old location for the volume … … 3328 3334 delete (connectedPath); 3329 3335 } 3330 LOG( 0,count << " triangles were created.");3336 LOG(1, "INFO: " << count << " triangles were created."); 3331 3337 } else { 3332 3338 while (!ListOfClosedPaths->empty()) { … … 3336 3342 delete (connectedPath); 3337 3343 } 3338 LOG( 0, "No need to create any triangles.");3344 LOG(3, "DEBUG: No need to create any triangles."); 3339 3345 } 3340 3346 delete (ListOfClosedPaths); 3341 3347 3342 LOG( 0, "Removed volume is " << volume << ".");3348 LOG(1, "INFO: Removed volume is " << volume << "."); 3343 3349 3344 3350 return volume; … … 3356 3362 TriangleList *Tesselation::FindTriangles(const TesselPoint* const Points[3]) const 3357 3363 { 3358 Info FunctionInfo(__func__);3364 //Info FunctionInfo(__func__); 3359 3365 TriangleList *result = new TriangleList; 3360 3366 LineMap::const_iterator FindLine; … … 3484 3490 IndexToIndex * Tesselation::FindAllDegeneratedLines() 3485 3491 { 3486 Info FunctionInfo(__func__);3492 //Info FunctionInfo(__func__); 3487 3493 UniqueLines AllLines; 3488 3494 IndexToIndex * DegeneratedLines = new IndexToIndex; … … 3505 3511 AllLines.clear(); 3506 3512 3507 LOG( 0, "FindAllDegeneratedLines() found " << DegeneratedLines->size() << " lines.");3513 LOG(2, "DEBUG: FindAllDegeneratedLines() found " << DegeneratedLines->size() << " lines."); 3508 3514 IndexToIndex::iterator it; 3509 3515 for (it = DegeneratedLines->begin(); it != DegeneratedLines->end(); it++) { … … 3511 3517 const LineMap::const_iterator Line2 = LinesOnBoundary.find((*it).second); 3512 3518 if (Line1 != LinesOnBoundary.end() && Line2 != LinesOnBoundary.end()) 3513 LOG( 0,*Line1->second << " => " << *Line2->second);3519 LOG(3, "DEBUG: " << *Line1->second << " => " << *Line2->second); 3514 3520 else 3515 3521 ELOG(1, "Either " << (*it).first << " or " << (*it).second << " are not in LinesOnBoundary!"); … … 3527 3533 IndexToIndex * Tesselation::FindAllDegeneratedTriangles() 3528 3534 { 3529 Info FunctionInfo(__func__);3535 //Info FunctionInfo(__func__); 3530 3536 IndexToIndex * DegeneratedLines = FindAllDegeneratedLines(); 3531 3537 IndexToIndex * DegeneratedTriangles = new IndexToIndex; … … 3553 3559 delete (DegeneratedLines); 3554 3560 3555 LOG( 0, "FindAllDegeneratedTriangles() found " << DegeneratedTriangles->size() << " triangles:");3561 LOG(3, "DEBUG: FindAllDegeneratedTriangles() found " << DegeneratedTriangles->size() << " triangles:"); 3556 3562 for (IndexToIndex::iterator it = DegeneratedTriangles->begin(); it != DegeneratedTriangles->end(); it++) 3557 LOG( 0,(*it).first << " => " << (*it).second);3563 LOG(3, "DEBUG: " << (*it).first << " => " << (*it).second); 3558 3564 3559 3565 return DegeneratedTriangles; … … 3566 3572 void Tesselation::RemoveDegeneratedTriangles() 3567 3573 { 3568 Info FunctionInfo(__func__);3574 //Info FunctionInfo(__func__); 3569 3575 IndexToIndex * DegeneratedTriangles = FindAllDegeneratedTriangles(); 3570 3576 TriangleMap::iterator finder; … … 3574 3580 // iterate over all degenerated triangles 3575 3581 for (IndexToIndex::iterator TriangleKeyRunner = DegeneratedTriangles->begin(); !DegeneratedTriangles->empty(); TriangleKeyRunner = DegeneratedTriangles->begin()) { 3576 LOG( 0, "Checking presence of triangles " << TriangleKeyRunner->first << " and " << TriangleKeyRunner->second << ".");3582 LOG(3, "DEBUG: Checking presence of triangles " << TriangleKeyRunner->first << " and " << TriangleKeyRunner->second << "."); 3577 3583 // both ways are stored in the map, only use one 3578 3584 if (TriangleKeyRunner->first > TriangleKeyRunner->second) … … 3631 3637 // erase the pair 3632 3638 count += (int) DegeneratedTriangles->erase(triangle->Nr); 3633 LOG( 0, "RemoveDegeneratedTriangles() removes triangle " << *triangle << ".");3639 LOG(4, "DEBUG: RemoveDegeneratedTriangles() removes triangle " << *triangle << "."); 3634 3640 RemoveTesselationTriangle(triangle); 3635 3641 count += (int) DegeneratedTriangles->erase(partnerTriangle->Nr); 3636 LOG( 0, "RemoveDegeneratedTriangles() removes triangle " << *partnerTriangle << ".");3642 LOG(4, "DEBUG: RemoveDegeneratedTriangles() removes triangle " << *partnerTriangle << "."); 3637 3643 RemoveTesselationTriangle(partnerTriangle); 3638 3644 } else { 3639 LOG( 0, "RemoveDegeneratedTriangles() does not remove triangle " << *triangle << " and its partner " << *partnerTriangle << " because it is essential for at" << " least one of the endpoints to be kept in the tesselation structure.");3645 LOG(4, "DEBUG: RemoveDegeneratedTriangles() does not remove triangle " << *triangle << " and its partner " << *partnerTriangle << " because it is essential for at" << " least one of the endpoints to be kept in the tesselation structure."); 3640 3646 } 3641 3647 } … … 3644 3650 LastTriangle = NULL; 3645 3651 3646 LOG( 0, "RemoveDegeneratedTriangles() removed " << count << " triangles:");3652 LOG(2, "INFO: RemoveDegeneratedTriangles() removed " << count << " triangles:"); 3647 3653 } 3648 3654 … … 3657 3663 void Tesselation::AddBoundaryPointByDegeneratedTriangle(class TesselPoint *point, LinkedCell_deprecated *LC) 3658 3664 { 3659 Info FunctionInfo(__func__);3665 //Info FunctionInfo(__func__); 3660 3666 // find nearest boundary point 3661 3667 class TesselPoint *BackupPoint = NULL; … … 3673 3679 return; 3674 3680 } 3675 LOG( 0, "Nearest point on boundary is " << NearestPoint->getName() << ".");3681 LOG(3, "DEBUG: Nearest point on boundary is " << NearestPoint->getName() << "."); 3676 3682 3677 3683 // go through its lines and find the best one to split … … 3755 3761 void Tesselation::Output(const char *filename, IPointCloud & cloud) 3756 3762 { 3757 Info FunctionInfo(__func__);3763 //Info FunctionInfo(__func__); 3758 3764 ofstream *tempstream = NULL; 3759 3765 string NameofTempFile; … … 3829 3835 int Tesselation::CorrectAllDegeneratedPolygons() 3830 3836 { 3831 Info FunctionInfo(__func__);3837 //Info FunctionInfo(__func__); 3832 3838 /// 2. Go through all BoundaryPointSet's, check their triangles' NormalVector 3833 3839 IndexToIndex *DegeneratedTriangles = FindAllDegeneratedTriangles(); … … 3836 3842 pair<map<int, Vector *>::iterator, bool> TriangleInsertionTester; 3837 3843 for (PointMap::const_iterator Runner = PointsOnBoundary.begin(); Runner != PointsOnBoundary.end(); Runner++) { 3838 LOG( 0, "Current point is " << *Runner->second << ".");3844 LOG(3, "DEBUG: Current point is " << *Runner->second << "."); 3839 3845 map<int, Vector *> TriangleVectors; 3840 3846 // gather all NormalVectors 3841 LOG( 1, "Gathering triangles ...");3847 LOG(4, "DEBUG: Gathering triangles ..."); 3842 3848 for (LineMap::const_iterator LineRunner = (Runner->second)->lines.begin(); LineRunner != (Runner->second)->lines.end(); LineRunner++) 3843 3849 for (TriangleMap::const_iterator TriangleRunner = (LineRunner->second)->triangles.begin(); TriangleRunner != (LineRunner->second)->triangles.end(); TriangleRunner++) { … … 3845 3851 TriangleInsertionTester = TriangleVectors.insert(pair<int, Vector *> ((TriangleRunner->second)->Nr, &((TriangleRunner->second)->NormalVector))); 3846 3852 if (TriangleInsertionTester.second) 3847 LOG( 1, "Adding triangle " << *(TriangleRunner->second) << " to triangles to check-list.");3853 LOG(5, "DEBUG: Adding triangle " << *(TriangleRunner->second) << " to triangles to check-list."); 3848 3854 } else { 3849 LOG( 1, "NOT adding triangle " << *(TriangleRunner->second) << " as it's a simply degenerated one.");3855 LOG(5, "DEBUG: NOT adding triangle " << *(TriangleRunner->second) << " as it's a simply degenerated one."); 3850 3856 } 3851 3857 } 3852 3858 // check whether there are two that are parallel 3853 LOG( 1, "Finding two parallel triangles ...");3859 LOG(3, "DEBUG: Finding two parallel triangles ..."); 3854 3860 for (map<int, Vector *>::iterator VectorWalker = TriangleVectors.begin(); VectorWalker != TriangleVectors.end(); VectorWalker++) 3855 3861 for (map<int, Vector *>::iterator VectorRunner = VectorWalker; VectorRunner != TriangleVectors.end(); VectorRunner++) 3856 3862 if (VectorWalker != VectorRunner) { // skip equals 3857 3863 const double SCP = VectorWalker->second->ScalarProduct(*VectorRunner->second); // ScalarProduct should result in -1. for degenerated triangles 3858 LOG( 1, "Checking " << *VectorWalker->second << " against " << *VectorRunner->second << ": " << SCP);3864 LOG(4, "DEBUG: Checking " << *VectorWalker->second << " against " << *VectorRunner->second << ": " << SCP); 3859 3865 if (fabs(SCP + 1.) < ParallelEpsilon) { 3860 3866 InsertionTester = EndpointCandidateList.insert((Runner->second)); 3861 3867 if (InsertionTester.second) 3862 LOG( 0, "Adding " << *Runner->second << " to endpoint candidate list.");3868 LOG(4, "DEBUG: Adding " << *Runner->second << " to endpoint candidate list."); 3863 3869 // and break out of both loops 3864 3870 VectorWalker = TriangleVectors.end(); … … 3879 3885 Walker = *(EndpointCandidateList.begin()); 3880 3886 if (Current == NULL) { // create a new polygon with current candidate 3881 LOG( 0, "Starting new polygon set at point " << *Walker);3887 LOG(3, "DEBUG: Starting new polygon set at point " << *Walker); 3882 3888 Current = new BoundaryPolygonSet; 3883 3889 Current->endpoints.insert(Walker); … … 3892 3898 for (LineMap::const_iterator LineWalker = Walker->lines.begin(); LineWalker != Walker->lines.end(); LineWalker++) { 3893 3899 OtherWalker = (LineWalker->second)->GetOtherEndpoint(Walker); 3894 LOG( 1, "Checking " << *OtherWalker);3900 LOG(4, "DEBUG: Checking " << *OtherWalker); 3895 3901 set<BoundaryPointSet *>::iterator Finder = EndpointCandidateList.find(OtherWalker); 3896 3902 if (Finder != EndpointCandidateList.end()) { // found a connected partner 3897 LOG( 1, "Adding to polygon.");3903 LOG(5, "DEBUG: Adding to polygon."); 3898 3904 Current->endpoints.insert(OtherWalker); 3899 3905 EndpointCandidateList.erase(Finder); // remove from candidates 3900 3906 ToCheckConnecteds.push(OtherWalker); // but check its partners too 3901 3907 } else { 3902 LOG( 1, "is not connected to " << *Walker);3908 LOG(5, "DEBUG: is not connected to " << *Walker); 3903 3909 } 3904 3910 } 3905 3911 } 3906 3912 3907 LOG( 0, "Final polygon is " << *Current);3913 LOG(3, "DEBUG: Final polygon is " << *Current); 3908 3914 ListofDegeneratedPolygons.insert(Current); 3909 3915 Current = NULL; … … 3917 3923 for (UniquePolygonSet::iterator PolygonRunner = ListofDegeneratedPolygons.begin(); PolygonRunner != ListofDegeneratedPolygons.end(); PolygonRunner++) 3918 3924 output << " " << **PolygonRunner; 3919 LOG( 0,output.str());3925 LOG(3, "DEBUG: " << output.str()); 3920 3926 } 3921 3927 … … 3929 3935 // check whether number is bigger than 2, otherwise it's just a simply degenerated one and nothing to do. 3930 3936 if (T->size() == 2) { 3931 LOG( 1, "Skipping degenerated polygon, is just a (already simply degenerated) triangle.");3937 LOG(4, "DEBUG: Skipping degenerated polygon, is just a (already simply degenerated) triangle."); 3932 3938 delete (T); 3933 3939 continue; … … 3945 3951 /// 4a. Get NormalVector for one side (this is "front") 3946 3952 NormalVector = (*TriangleWalker)->NormalVector; 3947 LOG( 1, "\"front\" defining triangle is " << **TriangleWalker << " and Normal vector of \"front\" side is " << NormalVector);3953 LOG(4, "DEBUG: \"front\" defining triangle is " << **TriangleWalker << " and Normal vector of \"front\" side is " << NormalVector); 3948 3954 TriangleWalker++; 3949 3955 TriangleSet::iterator TriangleSprinter = TriangleWalker; // is the inner advanced iterator … … 3954 3960 triangle = *TriangleWalker; 3955 3961 TriangleSprinter++; 3956 LOG( 1, "Current triangle to test for removal: " << *triangle);3962 LOG(4, "DEBUG: Current triangle to test for removal: " << *triangle); 3957 3963 if (triangle->NormalVector.ScalarProduct(NormalVector) < 0) { // if from other side, then delete and remove from list 3958 LOG( 1, "Removing ... ");3964 LOG(5, "DEBUG: Removing ... "); 3959 3965 TriangleNrs.push(triangle->Nr); 3960 3966 T->erase(TriangleWalker); 3961 3967 RemoveTesselationTriangle(triangle); 3962 3968 } else 3963 LOG( 1, "Keeping ... ");3969 LOG(5, "DEBUG: Keeping ... "); 3964 3970 } 3965 3971 /// 4c. Copy all "front" triangles but with inverse NormalVector 3966 3972 TriangleWalker = T->begin(); 3967 3973 while (TriangleWalker != T->end()) { // go through all front triangles 3968 LOG( 1, "Re-creating triangle " << **TriangleWalker << " with NormalVector " << (*TriangleWalker)->NormalVector);3974 LOG(4, "DEBUG: Re-creating triangle " << **TriangleWalker << " with NormalVector " << (*TriangleWalker)->NormalVector); 3969 3975 for (int i = 0; i < 3; i++) 3970 3976 AddTesselationPoint((*TriangleWalker)->endpoints[i]->node, i); … … 3986 3992 } 3987 3993 IndexToIndex * SimplyDegeneratedTriangles = FindAllDegeneratedTriangles(); 3988 LOG( 0, "Final list of simply degenerated triangles found, containing " << SimplyDegeneratedTriangles->size() << " triangles:");3994 LOG(2, "DEBUG: Final list of simply degenerated triangles found, containing " << SimplyDegeneratedTriangles->size() << " triangles:"); 3989 3995 IndexToIndex::iterator it; 3990 3996 for (it = SimplyDegeneratedTriangles->begin(); it != SimplyDegeneratedTriangles->end(); it++) 3991 LOG( 0,(*it).first << " => " << (*it).second);3997 LOG(2, "DEBUG: " << (*it).first << " => " << (*it).second); 3992 3998 delete (SimplyDegeneratedTriangles); 3993 3999 /// 5. exit -
src/Tesselation/tesselationhelpers.cpp
r2a3124 rce7bfd 44 44 void GetSphere(Vector * const center, const Vector &a, const Vector &b, const Vector &c, const double RADIUS) 45 45 { 46 Info FunctionInfo(__func__);46 //Info FunctionInfo(__func__); 47 47 RealSpaceMatrix mat; 48 48 double m11, m12, m13, m14; … … 109 109 const double HalfplaneIndicator, const double AlternativeIndicator, const double alpha, const double beta, const double gamma, const double RADIUS, const double Umkreisradius) 110 110 { 111 Info FunctionInfo(__func__);111 //Info FunctionInfo(__func__); 112 112 Vector TempNormal, helper; 113 113 double Restradius; … … 123 123 Center->Scale(1./(sin(2.*alpha) + sin(2.*beta) + sin(2.*gamma))); 124 124 (*NewUmkreismittelpunkt) = (*Center); 125 LOG( 2, "INFO: Center of new circumference is " << *NewUmkreismittelpunkt << ".");125 LOG(4, "DEBUG: Center of new circumference is " << *NewUmkreismittelpunkt << "."); 126 126 // Here we calculated center of circumscribing circle, using barycentric coordinates 127 LOG( 2, "INFO: Center of circumference is " << *Center << " in direction " << *Direction << ".");127 LOG(4, "DEBUG: Center of circumference is " << *Center << " in direction " << *Direction << "."); 128 128 129 129 TempNormal = a - b; … … 147 147 TempNormal.Normalize(); 148 148 Restradius = sqrt(RADIUS*RADIUS - Umkreisradius*Umkreisradius); 149 LOG( 2, "Height of center of circumference to center of sphere is " << Restradius << ".");149 LOG(5, "DEBUG: Height of center of circumference to center of sphere is " << Restradius << "."); 150 150 TempNormal.Scale(Restradius); 151 LOG( 2, "Shift vector to sphere of circumference is " << TempNormal << ".");151 LOG(5, "DEBUG: Shift vector to sphere of circumference is " << TempNormal << "."); 152 152 (*Center) += TempNormal; 153 LOG( 2, "Center of sphere of circumference is " << *Center << ".");153 LOG(5, "DEBUG: Center of sphere of circumference is " << *Center << "."); 154 154 GetSphere(&OtherCenter, a, b, c, RADIUS); 155 LOG( 2, "OtherCenter of sphere of circumference is " << OtherCenter << ".");155 LOG(5, "DEBUG: OtherCenter of sphere of circumference is " << OtherCenter << "."); 156 156 }; 157 157 … … 165 165 void GetCenterofCircumcircle(Vector &Center, const Vector &a, const Vector &b, const Vector &c) 166 166 { 167 Info FunctionInfo(__func__);167 //Info FunctionInfo(__func__); 168 168 Vector helper; 169 169 Vector SideA = b - c; … … 181 181 if (fabs(helper[0]+helper[1]+helper[2]) > MYEPSILON) 182 182 Center.Scale(1./(helper[0]+helper[1]+helper[2])); 183 LOG( 1, "INFO: Center (2nd algo) is at " << Center << ".");183 LOG(4, "DEBUG: Center (2nd algo) is at " << Center << "."); 184 184 }; 185 185 … … 200 200 double GetPathLengthonCircumCircle(const Vector &CircleCenter, const Vector &CirclePlaneNormal, const double CircleRadius, const Vector &NewSphereCenter, const Vector &OldSphereCenter, const Vector &NormalVector, const Vector &SearchDirection, const double HULLEPSILON) 201 201 { 202 Info FunctionInfo(__func__);202 //Info FunctionInfo(__func__); 203 203 Vector helper; 204 204 double radius, alpha; … … 220 220 if (helper.ScalarProduct(SearchDirection) < -HULLEPSILON) // acos is not unique on [0, 2.*M_PI), hence extra check to decide between two half intervals 221 221 alpha = 2.*M_PI - alpha; 222 LOG( 1, "INFO: RelativeNewSphereCenter is " << helper << ", RelativeOldSphereCenter is " << RelativeOldSphereCenter << " and resulting angle is " << alpha << ".");222 LOG(3, "DEBUG: RelativeNewSphereCenter is " << helper << ", RelativeOldSphereCenter is " << RelativeOldSphereCenter << " and resulting angle is " << alpha << "."); 223 223 radius = helper.distance(RelativeOldSphereCenter); 224 224 helper.ProjectOntoPlane(NormalVector); 225 225 // check whether new center is somewhat away or at least right over the current baseline to prevent intersecting triangles 226 226 if ((radius > HULLEPSILON) || (helper.Norm() < HULLEPSILON)) { 227 LOG( 1, "INFO: Distance between old and new center is " << radius << " and between new center and baseline center is " << helper.Norm() << ".");227 LOG(4, "DEBUG: Distance between old and new center is " << radius << " and between new center and baseline center is " << helper.Norm() << "."); 228 228 return alpha; 229 229 } else { 230 LOG( 1, "INFO: NewSphereCenter " << RelativeNewSphereCenter << " is too close to RelativeOldSphereCenter" << RelativeOldSphereCenter << ".");230 LOG(3, "DEBUG: NewSphereCenter " << RelativeNewSphereCenter << " is too close to RelativeOldSphereCenter" << RelativeOldSphereCenter << "."); 231 231 return 2.*M_PI; 232 232 } … … 251 251 double GetAngle(const Vector &point, const Vector &reference, const Vector &OrthogonalVector) 252 252 { 253 Info FunctionInfo(__func__);253 //Info FunctionInfo(__func__); 254 254 if (reference.IsZero()) 255 255 return M_PI; … … 278 278 double CalculateVolumeofGeneralTetraeder(const Vector &a, const Vector &b, const Vector &c, const Vector &d) 279 279 { 280 Info FunctionInfo(__func__);280 //Info FunctionInfo(__func__); 281 281 Vector Point, TetraederVector[3]; 282 282 double volume; … … 302 302 double CalculateAreaofGeneralTriangle(const Vector &A, const Vector &B, const Vector &C) 303 303 { 304 Info FunctionInfo(__func__);304 //Info FunctionInfo(__func__); 305 305 306 306 const double sidea = B.distance(C); … … 322 322 bool CheckLineCriteriaForDegeneratedTriangle(const BoundaryPointSet * const nodes[3]) 323 323 { 324 Info FunctionInfo(__func__);324 //Info FunctionInfo(__func__); 325 325 bool result = false; 326 326 int counter = 0; … … 360 360 //bool SortCandidates(const CandidateForTesselation* candidate1, const CandidateForTesselation* candidate2) 361 361 //{ 362 // Info FunctionInfo(__func__);362 // //Info FunctionInfo(__func__); 363 363 // Vector BaseLineVector, OrthogonalVector, helper; 364 364 // if (candidate1->BaseLine != candidate2->BaseLine) { // sanity check … … 411 411 TesselPoint* FindSecondClosestTesselPoint(const Vector& Point, const LinkedCell_deprecated* const LC) 412 412 { 413 Info FunctionInfo(__func__);413 //Info FunctionInfo(__func__); 414 414 TesselPoint* closestPoint = NULL; 415 415 TesselPoint* secondClosestPoint = NULL; … … 422 422 for(int i=0;i<NDIM;i++) // store indices of this cell 423 423 N[i] = LC->n[i]; 424 LOG( 1, "INFO: Center cell is " << N[0] << ", " << N[1] << ", " << N[2] << " with No. " << LC->index << ".");424 LOG(2, "DEBUG: Center cell is " << N[0] << ", " << N[1] << ", " << N[2] << " with No. " << LC->index << "."); 425 425 426 426 LC->GetNeighbourBounds(Nlower, Nupper); … … 463 463 TesselPoint* FindClosestTesselPoint(const Vector& Point, TesselPoint *&SecondPoint, const LinkedCell_deprecated* const LC) 464 464 { 465 Info FunctionInfo(__func__);465 //Info FunctionInfo(__func__); 466 466 TesselPoint* closestPoint = NULL; 467 467 SecondPoint = NULL; … … 474 474 for(int i=0;i<NDIM;i++) // store indices of this cell 475 475 N[i] = LC->n[i]; 476 LOG( 1, "INFO: Center cell is " << N[0] << ", " << N[1] << ", " << N[2] << " with No. " << LC->index << ".");476 LOG(2, "DEBUG: Center cell is " << N[0] << ", " << N[1] << ", " << N[2] << " with No. " << LC->index << "."); 477 477 478 478 LC->GetNeighbourBounds(Nlower, Nupper); … … 504 504 // output 505 505 if (closestPoint != NULL) { 506 if (DoLog( 1)) {506 if (DoLog(3)) { 507 507 std::stringstream output; 508 508 output << "Closest point is " << *closestPoint; 509 509 if (SecondPoint != NULL) 510 510 output << " and second closest is " << *SecondPoint; 511 LOG( 0,output.str() << ".");511 LOG(3, "DEBUG: " << output.str() << "."); 512 512 } 513 513 } … … 523 523 Vector * GetClosestPointBetweenLine(const BoundaryLineSet * const Base, const BoundaryLineSet * const OtherBase) 524 524 { 525 Info FunctionInfo(__func__);525 //Info FunctionInfo(__func__); 526 526 // construct the plane of the two baselines (i.e. take both their directional vectors) 527 527 Vector Baseline = (Base->endpoints[1]->node->getPosition()) - (Base->endpoints[0]->node->getPosition()); … … 557 557 double DistanceToTrianglePlane(const Vector *x, const BoundaryTriangleSet * const triangle) 558 558 { 559 Info FunctionInfo(__func__);559 //Info FunctionInfo(__func__); 560 560 double distance = 0.; 561 561 if (x == NULL) { … … 574 574 void WriteVrmlFile(ofstream * const vrmlfile, const Tesselation * const Tess, IPointCloud & cloud) 575 575 { 576 Info FunctionInfo(__func__);576 //Info FunctionInfo(__func__); 577 577 TesselPoint *Walker = NULL; 578 578 int i; … … 618 618 void IncludeSphereinRaster3D(ofstream * const rasterfile, const Tesselation * const Tess, IPointCloud & cloud) 619 619 { 620 Info FunctionInfo(__func__);620 //Info FunctionInfo(__func__); 621 621 Vector helper; 622 622 … … 646 646 void WriteRaster3dFile(ofstream * const rasterfile, const Tesselation * const Tess, IPointCloud & cloud) 647 647 { 648 Info FunctionInfo(__func__);648 //Info FunctionInfo(__func__); 649 649 TesselPoint *Walker = NULL; 650 650 int i; … … 696 696 void WriteTecplotFile(ofstream * const tecplot, const Tesselation * const TesselStruct, IPointCloud & cloud, const int N) 697 697 { 698 Info FunctionInfo(__func__);698 //Info FunctionInfo(__func__); 699 699 if ((tecplot != NULL) && (TesselStruct != NULL)) { 700 700 // write header … … 752 752 void CalculateConcavityPerBoundaryPoint(const Tesselation * const TesselStruct) 753 753 { 754 Info FunctionInfo(__func__);754 //Info FunctionInfo(__func__); 755 755 class BoundaryPointSet *point = NULL; 756 756 class BoundaryLineSet *line = NULL; … … 813 813 void CalculateConstrictionPerBoundaryPoint(const Tesselation * const TesselStruct, const Tesselation * const Convex) 814 814 { 815 Info FunctionInfo(__func__);815 //Info FunctionInfo(__func__); 816 816 double distance = 0.; 817 817 … … 837 837 bool CheckListOfBaselines(const Tesselation * const TesselStruct) 838 838 { 839 Info FunctionInfo(__func__);839 //Info FunctionInfo(__func__); 840 840 LineMap::const_iterator testline; 841 841 bool result = false; … … 862 862 int CountTrianglePairContainingPolygon(const BoundaryPolygonSet * const P, const TriangleSet * const T) 863 863 { 864 Info FunctionInfo(__func__);864 //Info FunctionInfo(__func__); 865 865 // check number of endpoints in *P 866 866 if (P->endpoints.size() != 4) { … … 875 875 } 876 876 877 LOG( 0, "Polygon is " << *P);877 LOG(3, "DEBUG: Polygon is " << *P); 878 878 // create each pair, get the endpoints and check whether *P is contained. 879 879 int counter = 0; … … 891 891 const int size = PairTrianglenodes.endpoints.size(); 892 892 if (size == 4) { 893 LOG( 0, "Current pair of triangles: " << **Walker << "," << **PairWalker << " with " << size << " distinct endpoints:" << PairTrianglenodes);893 LOG(4, "DEBUG: Current pair of triangles: " << **Walker << "," << **PairWalker << " with " << size << " distinct endpoints:" << PairTrianglenodes); 894 894 // now check 895 895 if (PairTrianglenodes.ContainsPresentTupel(P)) { 896 896 counter++; 897 LOG( 0, " ACCEPT: Matches with " << *P);897 LOG(5, " ACCEPT: Matches with " << *P); 898 898 } else { 899 LOG( 0, " REJECT: No match with " << *P);899 LOG(5, " REJECT: No match with " << *P); 900 900 } 901 901 } else { 902 LOG( 0, " REJECT: Less than four endpoints.");902 LOG(5, " REJECT: Less than four endpoints."); 903 903 } 904 904 } … … 916 916 bool ArePolygonsEdgeConnected(const BoundaryPolygonSet * const P1, const BoundaryPolygonSet * const P2) 917 917 { 918 Info FunctionInfo(__func__);918 //Info FunctionInfo(__func__); 919 919 int counter = 0; 920 920 for(PointSet::const_iterator Runner = P1->endpoints.begin(); Runner != P1->endpoints.end(); Runner++) { 921 921 if (P2->ContainsBoundaryPoint((*Runner))) { 922 922 counter++; 923 LOG( 1,*(*Runner) << " of second polygon is found in the first one.");923 LOG(5, "DEBUG: " << *(*Runner) << " of second polygon is found in the first one."); 924 924 return true; 925 925 } … … 934 934 void CombinePolygons(BoundaryPolygonSet * const P1, BoundaryPolygonSet * &P2) 935 935 { 936 Info FunctionInfo(__func__);936 //Info FunctionInfo(__func__); 937 937 pair <PointSet::iterator, bool> Tester; 938 938 for(PointSet::iterator Runner = P2->endpoints.begin(); Runner != P2->endpoints.end(); Runner++) { 939 939 Tester = P1->endpoints.insert((*Runner)); 940 940 if (Tester.second) 941 LOG( 0, "Inserting endpoint " << *(*Runner) << " into first polygon.");941 LOG(4, "DEBUG: Inserting endpoint " << *(*Runner) << " into first polygon."); 942 942 } 943 943 P2->endpoints.clear();
Note:
See TracChangeset
for help on using the changeset viewer.