Changeset 2a3124 for src/Tesselation


Ignore:
Timestamp:
Apr 3, 2012, 8:00:45 AM (13 years ago)
Author:
Frederik Heber <heber@…>
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:
ce7bfd
Parents:
e791dc
git-author:
Frederik Heber <heber@…> (03/13/12 17:35:01)
git-committer:
Frederik Heber <heber@…> (04/03/12 08:00:45)
Message:

VERBOSE: Removed lots of Info objects in tesselation classes member functions.

Location:
src/Tesselation
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Tesselation/BoundaryTriangleSet.cpp

    re791dc r2a3124  
    4646  Nr(-1)
    4747{
    48   Info FunctionInfo(__func__);
     48  //Info FunctionInfo(__func__);
    4949  for (int i = 0; i < 3; i++) {
    5050    endpoints[i] = NULL;
     
    6161  Nr(number)
    6262{
    63   Info FunctionInfo(__func__);
     63  //Info FunctionInfo(__func__);
    6464  // set number
    6565  // set lines
     
    9595BoundaryTriangleSet::~BoundaryTriangleSet()
    9696{
    97   Info FunctionInfo(__func__);
     97  //Info FunctionInfo(__func__);
    9898  for (int i = 0; i < 3; i++) {
    9999    if (lines[i] != NULL) {
     
    135135void BoundaryTriangleSet::GetNormalVector(const Vector &OtherVector)
    136136{
    137   Info FunctionInfo(__func__);
     137  //Info FunctionInfo(__func__);
    138138  // get normal vector
    139139  NormalVector = Plane((endpoints[0]->node->getPosition()),
     
    163163bool BoundaryTriangleSet::GetIntersectionInsideTriangle(const Vector & MolCenter, const Vector & x, Vector &Intersection) const
    164164{
    165   Info FunctionInfo(__func__);
     165  //Info FunctionInfo(__func__);
    166166  Vector CrossPoint;
    167167  Vector helper;
     
    227227double BoundaryTriangleSet::GetClosestPointInsideTriangle(const Vector &x, Vector &ClosestPoint) const
    228228{
    229   Info FunctionInfo(__func__);
     229  //Info FunctionInfo(__func__);
    230230  Vector Direction;
    231231
     
    309309bool BoundaryTriangleSet::ContainsBoundaryLine(const BoundaryLineSet * const line) const
    310310{
    311   Info FunctionInfo(__func__);
     311  //Info FunctionInfo(__func__);
    312312  for (int i = 0; i < 3; i++)
    313313    if (line == lines[i])
     
    323323bool BoundaryTriangleSet::ContainsBoundaryPoint(const BoundaryPointSet * const point) const
    324324{
    325   Info FunctionInfo(__func__);
     325  //Info FunctionInfo(__func__);
    326326  for (int i = 0; i < 3; i++)
    327327    if (point == endpoints[i])
     
    337337bool BoundaryTriangleSet::ContainsBoundaryPoint(const TesselPoint * const point) const
    338338{
    339   Info FunctionInfo(__func__);
     339  //Info FunctionInfo(__func__);
    340340  for (int i = 0; i < 3; i++)
    341341    if (point == endpoints[i]->node)
     
    351351bool BoundaryTriangleSet::IsPresentTupel(const BoundaryPointSet * const Points[3]) const
    352352{
    353   Info FunctionInfo(__func__);
     353  //Info FunctionInfo(__func__);
    354354  LOG(1, "INFO: Checking " << Points[0] << "," << Points[1] << "," << Points[2] << " against " << endpoints[0] << "," << endpoints[1] << "," << endpoints[2] << ".");
    355355  return (((endpoints[0] == Points[0]) || (endpoints[0] == Points[1]) || (endpoints[0] == Points[2])) && ((endpoints[1] == Points[0]) || (endpoints[1] == Points[1]) || (endpoints[1] == Points[2])) && ((endpoints[2] == Points[0]) || (endpoints[2] == Points[1]) || (endpoints[2] == Points[2])
     
    365365bool BoundaryTriangleSet::IsPresentTupel(const BoundaryTriangleSet * const T) const
    366366{
    367   Info FunctionInfo(__func__);
     367  //Info FunctionInfo(__func__);
    368368  return (((endpoints[0] == T->endpoints[0]) || (endpoints[0] == T->endpoints[1]) || (endpoints[0] == T->endpoints[2])) && ((endpoints[1] == T->endpoints[0]) || (endpoints[1] == T->endpoints[1]) || (endpoints[1] == T->endpoints[2])) && ((endpoints[2] == T->endpoints[0]) || (endpoints[2] == T->endpoints[1]) || (endpoints[2] == T->endpoints[2])
    369369
     
    453453class BoundaryPointSet *BoundaryTriangleSet::GetThirdEndpoint(const BoundaryLineSet * const line) const
    454454{
    455   Info FunctionInfo(__func__);
     455  //Info FunctionInfo(__func__);
    456456  // sanity check
    457457  if (!ContainsBoundaryLine(line))
     
    471471class BoundaryLineSet *BoundaryTriangleSet::GetThirdLine(const BoundaryPointSet * const point) const
    472472{
    473   Info FunctionInfo(__func__);
     473  //Info FunctionInfo(__func__);
    474474  // sanity check
    475475  if (!ContainsBoundaryPoint(point))
     
    489489void BoundaryTriangleSet::GetCenter(Vector & center) const
    490490{
    491   Info FunctionInfo(__func__);
     491  //Info FunctionInfo(__func__);
    492492  center.Zero();
    493493  for (int i = 0; i < 3; i++)
  • src/Tesselation/tesselation.cpp

    re791dc r2a3124  
    25712571bool Tesselation::IsInnerPoint(const Vector &Point, const LinkedCell_deprecated* const LC) const
    25722572{
    2573   Info FunctionInfo(__func__);
    25742573  TriangleIntersectionList Intersections(Point, this, LC);
    2575 
    25762574  return Intersections.IsInside();
    25772575}
    2578 ;
    25792576
    25802577/** Returns the distance to the surface given by the tesselation.
  • src/Tesselation/triangleintersectionlist.cpp

    re791dc r2a3124  
    4646  Vicinity(LC)
    4747{
    48   Info FunctionInfo(__func__);
     48  //Info FunctionInfo(__func__);
    4949  GatherIntersectionsWithTriangles();
    5050};
     
    5555TriangleIntersectionList::~TriangleIntersectionList()
    5656{
    57   Info FunctionInfo(__func__);
     57  //Info FunctionInfo(__func__);
    5858  for (TriangleVectorMap::iterator Runner = IntersectionList.begin(); Runner != IntersectionList.end(); Runner++)
    5959    delete((*Runner).second);
     
    6666double TriangleIntersectionList::GetSmallestDistance() const
    6767{
    68   Info FunctionInfo(__func__);
     68  //Info FunctionInfo(__func__);
    6969  FillDistanceList();
    7070  if (!DistanceList.empty())
     
    8181Vector TriangleIntersectionList::GetClosestIntersection() const
    8282{
    83   Info FunctionInfo(__func__);
     83  //Info FunctionInfo(__func__);
    8484  TriangleVectorMap::const_iterator runner;
    8585  runner = GetIteratortoSmallestDistance();
     
    9797BoundaryTriangleSet * TriangleIntersectionList::GetClosestTriangle() const
    9898{
    99   Info FunctionInfo(__func__);
     99  //Info FunctionInfo(__func__);
    100100  TriangleVectorMap::const_iterator runner;
    101101  runner = GetIteratortoSmallestDistance();
     
    112112bool TriangleIntersectionList::IsInside() const
    113113{
    114   Info FunctionInfo(__func__);
     114  //Info FunctionInfo(__func__);
    115115  TriangleVectorMap::const_iterator runner = GetIteratortoSmallestDistance();
    116116  if (runner != IntersectionList.end()) {
     
    144144void TriangleIntersectionList::GatherIntersectionsWithTriangles()
    145145{
    146   Info FunctionInfo(__func__);
     146  //Info FunctionInfo(__func__);
    147147
    148148  // get closest points
     
    174174void TriangleIntersectionList::FillDistanceList() const
    175175{
    176   Info FunctionInfo(__func__);
     176  //Info FunctionInfo(__func__);
    177177  if (DistanceList.empty())
    178178    for (TriangleVectorMap::const_iterator runner = IntersectionList.begin(); runner != IntersectionList.end(); runner++)
     
    190190TriangleVectorMap::const_iterator TriangleIntersectionList::GetIteratortoSmallestDistance() const
    191191{
    192   Info FunctionInfo(__func__);
     192  //Info FunctionInfo(__func__);
    193193  FillDistanceList();
    194194
Note: See TracChangeset for help on using the changeset viewer.