Changeset 53c7fc for src/Tesselation


Ignore:
Timestamp:
Dec 28, 2011, 3:30:06 PM (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:
aa6c75
Parents:
3e4fb6
git-author:
Frederik Heber <heber@…> (11/14/11 16:29:50)
git-committer:
Frederik Heber <heber@…> (12/28/11 15:30:06)
Message:

Moved linkedcell.[ch]pp and related files to folder src/LinkedCell.

  • adapted all #include's.
  • also sorted includes of modified files.
Location:
src/Tesselation
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/Tesselation/CandidateForTesselation.cpp

    r3e4fb6 r53c7fc  
    3131#include "CodePatterns/Assert.hpp"
    3232#include "CodePatterns/Info.hpp"
    33 //#include "Line.hpp"
    34 #include "linkedcell.hpp"
    3533#include "CodePatterns/Log.hpp"
    36 //#include "Plane.hpp"
    3734#include "LinearAlgebra/Vector.hpp"
    38 #include "CodePatterns/Verbose.hpp"
     35#include "LinkedCell/linkedcell.hpp"
    3936
    4037using namespace std;
  • TabularUnified src/Tesselation/boundary.cpp

    r3e4fb6 r53c7fc  
    3333#include "LinearAlgebra/Plane.hpp"
    3434#include "LinearAlgebra/RealSpaceMatrix.hpp"
    35 #include "linkedcell.hpp"
     35#include "LinkedCell/linkedcell.hpp"
     36#include "LinkedCell/PointCloudAdaptor.hpp"
    3637#include "molecule.hpp"
    3738#include "MoleculeListClass.hpp"
    38 #include "PointCloudAdaptor.hpp"
    3939#include "RandomNumbers/RandomNumberGeneratorFactory.hpp"
    4040#include "RandomNumbers/RandomNumberGenerator.hpp"
  • TabularUnified src/Tesselation/ellipsoid.cpp

    r3e4fb6 r53c7fc  
    2727#include <set>
    2828
     29#include "CodePatterns/Log.hpp"
     30#include "ellipsoid.hpp"
     31#include "LinearAlgebra/Vector.hpp"
     32#include "LinearAlgebra/RealSpaceMatrix.hpp"
     33#include "LinkedCell/linkedcell.hpp"
    2934#include "Tesselation/BoundaryPointSet.hpp"
    3035#include "Tesselation/boundary.hpp"
    31 #include "ellipsoid.hpp"
    32 #include "linkedcell.hpp"
    33 #include "CodePatterns/Log.hpp"
    34 #include "tesselation.hpp"
    35 #include "LinearAlgebra/Vector.hpp"
    36 #include "LinearAlgebra/RealSpaceMatrix.hpp"
    37 #include "CodePatterns/Verbose.hpp"
     36#include "Tesselation/tesselation.hpp"
    3837
    3938#include "RandomNumbers/RandomNumberGeneratorFactory.hpp"
  • TabularUnified src/Tesselation/tesselation.cpp

    r3e4fb6 r53c7fc  
    2323#include <iomanip>
    2424#include <sstream>
     25
     26#include "tesselation.hpp"
    2527
    2628#include "BoundaryPointSet.hpp"
     
    3537#include "CodePatterns/Verbose.hpp"
    3638#include "Helpers/helpers.hpp"
    37 #include "IPointCloud.hpp"
    3839#include "LinearAlgebra/Exceptions.hpp"
    3940#include "LinearAlgebra/Line.hpp"
     
    4142#include "LinearAlgebra/Vector.hpp"
    4243#include "LinearAlgebra/vector_ops.hpp"
    43 #include "linkedcell.hpp"
    44 #include "PointCloudAdaptor.hpp"
    45 #include "tesselation.hpp"
     44#include "LinkedCell/IPointCloud.hpp"
     45#include "LinkedCell/linkedcell.hpp"
     46#include "LinkedCell/PointCloudAdaptor.hpp"
    4647#include "tesselationhelpers.hpp"
    4748#include "TesselPoint.hpp"
  • TabularUnified src/Tesselation/tesselationhelpers.cpp

    r3e4fb6 r53c7fc  
    2121
    2222#include <fstream>
     23
     24#include "tesselationhelpers.hpp"
    2325
    2426#include "BoundaryLineSet.hpp"
     
    3032#include "CodePatterns/Log.hpp"
    3133#include "CodePatterns/Verbose.hpp"
    32 #include "IPointCloud.hpp"
    3334#include "LinearAlgebra/Line.hpp"
    3435#include "LinearAlgebra/LinearSystemOfEquations.hpp"
     
    3738#include "LinearAlgebra/Vector.hpp"
    3839#include "LinearAlgebra/vector_ops.hpp"
    39 #include "linkedcell.hpp"
     40#include "LinkedCell/IPointCloud.hpp"
     41#include "LinkedCell/linkedcell.hpp"
    4042#include "tesselation.hpp"
    41 #include "tesselationhelpers.hpp"
    4243
    4344void GetSphere(Vector * const center, const Vector &a, const Vector &b, const Vector &c, const double RADIUS)
  • TabularUnified src/Tesselation/unittests/TesselationUnitTest.cpp

    r3e4fb6 r53c7fc  
    2626#include <cstring>
    2727
     28#include "CodePatterns/Log.hpp"
     29#include "Helpers/defs.hpp"
     30#include "LinkedCell/PointCloudAdaptor.hpp"
    2831#include "Tesselation/BoundaryLineSet.hpp"
    2932#include "Tesselation/BoundaryTriangleSet.hpp"
    3033#include "Tesselation/CandidateForTesselation.hpp"
    31 #include "CodePatterns/Log.hpp"
    32 #include "Helpers/defs.hpp"
    33 #include "PointCloudAdaptor.hpp"
    3434#include "Tesselation/TesselPoint.hpp"
    3535
  • TabularUnified src/Tesselation/unittests/TesselationUnitTest.hpp

    r3e4fb6 r53c7fc  
    1919#include <cppunit/extensions/HelperMacros.h>
    2020
    21 #include "linkedcell.hpp"
     21#include "LinkedCell/linkedcell.hpp"
    2222#include "Tesselation/tesselation.hpp"
    2323
  • TabularUnified src/Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.hpp

    r3e4fb6 r53c7fc  
    1919#include <cppunit/extensions/HelperMacros.h>
    2020
    21 #include "linkedcell.hpp"
     21#include "LinkedCell/linkedcell.hpp"
    2222#include "Tesselation/tesselation.hpp"
    2323
  • TabularUnified src/Tesselation/unittests/Tesselation_InsideOutsideUnitTest.cpp

    r3e4fb6 r53c7fc  
    2727#include <iostream>
    2828
     29#include "CodePatterns/Log.hpp"
     30#include "CodePatterns/Verbose.hpp"
     31#include "Helpers/defs.hpp"
     32#include "LinkedCell/PointCloudAdaptor.hpp"
    2933#include "Tesselation/BoundaryLineSet.hpp"
    3034#include "Tesselation/BoundaryTriangleSet.hpp"
    3135#include "Tesselation/CandidateForTesselation.hpp"
    32 #include "CodePatterns/Log.hpp"
    33 #include "CodePatterns/Verbose.hpp"
    34 #include "Helpers/defs.hpp"
    35 #include "PointCloudAdaptor.hpp"
    3636#include "Tesselation/TesselPoint.hpp"
    3737
  • TabularUnified src/Tesselation/unittests/Tesselation_InsideOutsideUnitTest.hpp

    r3e4fb6 r53c7fc  
    1919#include <cppunit/extensions/HelperMacros.h>
    2020
    21 #include "linkedcell.hpp"
     21#include "LinkedCell/linkedcell.hpp"
    2222#include "Tesselation/tesselation.hpp"
    2323
Note: See TracChangeset for help on using the changeset viewer.