- Timestamp:
- Aug 28, 2010, 12:57:56 AM (15 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:
- c449d9
- Parents:
- 21585f
- git-author:
- Frederik Heber <heber@…> (08/27/10 20:58:40)
- git-committer:
- Frederik Heber <heber@…> (08/28/10 00:57:56)
- Location:
- src
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/AnalysisAction/MolecularVolumeAction.cpp
r21585f raf2c424 51 51 const LinkedCell *LCList = NULL; 52 52 DoLog(0) && (Log() << Verbose(0) << "Evaluating volume of the convex envelope."); 53 LCList = new LinkedCell( mol, 10.);53 LCList = new LinkedCell(*mol, 10.); 54 54 config * const configuration = World::getInstance().getConfig(); 55 55 //Boundaries *BoundaryPoints = NULL; -
src/Actions/AnalysisAction/SurfaceCorrelationAction.cpp
r21585f raf2c424 73 73 std::vector<molecule*> molecules = World::getInstance().getSelectedMolecules(); 74 74 std::cout << "There are " << molecules.size() << " selected molecules." << std::endl; 75 LCList = new LinkedCell( params.Boundary, LCWidth);75 LCList = new LinkedCell(*params.Boundary, LCWidth); 76 76 FindNonConvexBorder(params.Boundary, TesselStruct, LCList, radius, NULL); 77 77 CorrelationToSurfaceMap *surfacemap = NULL; -
src/Actions/TesselationAction/ConvexEnvelopeAction.cpp
r21585f raf2c424 55 55 DoLog(1) && (Log() << Verbose(1) << "Storing tecplot convex data in " << params.filenameConvex << "." << endl); 56 56 DoLog(1) && (Log() << Verbose(1) << "Storing tecplot non-convex data in " << params.filenameNonConvex << "." << endl); 57 LCList = new LinkedCell( mol, 100.);57 LCList = new LinkedCell(*mol, 100.); 58 58 //Boundaries *BoundaryPoints = NULL; 59 59 //FindConvexBorder(mol, BoundaryPoints, TesselStruct, LCList, argv[argptr]); -
src/Actions/TesselationAction/NonConvexEnvelopeAction.cpp
r21585f raf2c424 55 55 DoLog(1) && (Log() << Verbose(1) << "Specified molecule has " << Boundary->getAtomCount() << " atoms." << endl); 56 56 start = clock(); 57 LCList = new LinkedCell( Boundary, params.SphereRadius*2.);57 LCList = new LinkedCell(*Boundary, params.SphereRadius*2.); 58 58 Success = FindNonConvexBorder(Boundary, T, LCList, params.SphereRadius, params.filename.c_str()); 59 59 //FindDistributionOfEllipsoids(T, &LCList, N, number, params.filename.c_str()); -
src/bondgraph.cpp
r21585f raf2c424 154 154 }; 155 155 156 /** Returns the maximum distance (e.g. necessary for LinkedCell). 157 * \return BondGraph::max_distance 158 */ 159 double BondGraph::getMaxDistance() const 160 { 161 return max_distance; 162 } 163 164 156 165 /** Returns bond criterion for given pair based on covalent radius. 157 166 * \param *Walker first BondedParticle -
src/bondgraph.hpp
r21585f raf2c424 44 44 void CovalentMinMaxDistance(BondedParticle * const Walker, BondedParticle * const OtherWalker, double &MinDistance, double &MaxDistance, bool IsAngstroem); 45 45 46 double getMaxDistance() const; 47 46 48 private: 47 49 static const double BondThreshold; -
src/boundary.cpp
r21585f raf2c424 698 698 BoundaryPoints = GetBoundaryPoints(mol, TesselStruct); 699 699 GreatestDiameter = GetDiametersOfCluster(BoundaryPoints, mol, TesselStruct, IsAngstroem); 700 LinkedCell *LCList = new LinkedCell( mol, 10.);700 LinkedCell *LCList = new LinkedCell(*mol, 10.); 701 701 FindConvexBorder(mol, BoundaryPoints, TesselStruct, (const LinkedCell *&)LCList, NULL); 702 702 delete (LCList); … … 808 808 if ((*ListRunner)->getAtomCount() > 0) { 809 809 DoLog(1) && (Log() << Verbose(1) << "Pre-creating linked cell lists for molecule " << *ListRunner << "." << endl); 810 LCList[(*ListRunner)] = new LinkedCell( (*ListRunner), 10.); // get linked cell list810 LCList[(*ListRunner)] = new LinkedCell(*(*ListRunner), 10.); // get linked cell list 811 811 DoLog(1) && (Log() << Verbose(1) << "Pre-creating tesselation for molecule " << *ListRunner << "." << endl); 812 812 TesselStruct[(*ListRunner)] = NULL; … … 957 957 // initialise Linked Cell 958 958 if (LCList == NULL) { 959 LCList = new LinkedCell( mol, 2.*RADIUS);959 LCList = new LinkedCell(*mol, 2.*RADIUS); 960 960 freeLC = true; 961 961 } -
src/linkedcell.cpp
r21585f raf2c424 25 25 #include "Helpers/Log.hpp" 26 26 #include "molecule.hpp" 27 #include "PointCloud.hpp" 27 28 #include "tesselation.hpp" 28 29 #include "LinearAlgebra/Vector.hpp" … … 30 31 // ========================================================= class LinkedCell =========================================== 31 32 33 /** Constructor for class LinkedCell::LinkedNodes. 34 */ 35 LinkedCell::LinkedNodes::LinkedNodes() 36 {} 37 38 /** Destructor for class LinkedCell::LinkedNodes. 39 */ 40 LinkedCell::LinkedNodes::~LinkedNodes() 41 {} 42 43 TesselPoint * LinkedCell::LinkedNodes::getValue (const_iterator &rhs) const 44 { 45 return *rhs; 46 } 47 48 TesselPoint * LinkedCell::LinkedNodes::getValue (iterator &rhs) const 49 { 50 return *rhs; 51 } 32 52 33 53 /** Constructor for class LinkedCell. … … 48 68 * \param RADIUS edge length of cells 49 69 */ 50 LinkedCell::LinkedCell(const PointCloud * constset, const double radius) :70 LinkedCell::LinkedCell(const PointCloud & set, const double radius) : 51 71 LC(NULL), 52 72 RADIUS(radius), … … 60 80 min.Zero(); 61 81 DoLog(1) && (Log() << Verbose(1) << "Begin of LinkedCell" << endl); 62 if ( (set == NULL) || (set->IsEmpty())) {82 if (set.IsEmpty()) { 63 83 DoeLog(1) && (eLog()<< Verbose(1) << "set is NULL or contains no linked cell nodes!" << endl); 64 84 return; 65 85 } 66 86 // 1. find max and min per axis of atoms 67 set ->GoToFirst();68 Walker = set ->GetPoint();87 set.GoToFirst(); 88 Walker = set.GetPoint(); 69 89 for (int i=0;i<NDIM;i++) { 70 90 max[i] = Walker->at(i); 71 91 min[i] = Walker->at(i); 72 92 } 73 set ->GoToFirst();74 while (!set ->IsEnd()) {75 Walker = set ->GetPoint();93 set.GoToFirst(); 94 while (!set.IsEnd()) { 95 Walker = set.GetPoint(); 76 96 for (int i=0;i<NDIM;i++) { 77 97 if (max[i] < Walker->at(i)) … … 80 100 min[i] = Walker->at(i); 81 101 } 82 set ->GoToNext();102 set.GoToNext(); 83 103 } 84 104 DoLog(2) && (Log() << Verbose(2) << "Bounding box is " << min << " and " << max << "." << endl); … … 105 125 // 4. put each atom into its respective cell 106 126 DoLog(2) && (Log() << Verbose(2) << "Filling cells ... "); 107 set ->GoToFirst();108 while (!set ->IsEnd()) {109 Walker = set ->GetPoint();127 set.GoToFirst(); 128 while (!set.IsEnd()) { 129 Walker = set.GetPoint(); 110 130 for (int i=0;i<NDIM;i++) { 111 131 n[i] = static_cast<int>(floor((Walker->at(i) - min[i])/RADIUS)); … … 114 134 LC[index].push_back(Walker); 115 135 //Log() << Verbose(2) << *Walker << " goes into cell " << n[0] << ", " << n[1] << ", " << n[2] << " with No. " << index << "." << endl; 116 set ->GoToNext();136 set.GoToNext(); 117 137 } 118 138 DoLog(0) && (Log() << Verbose(0) << "done." << endl); … … 120 140 }; 121 141 122 123 /** Puts all atoms in \a *mol into a linked cell list with cell's lengths of \a RADIUS124 * \param *set LCNodeSet class with all LCNode's125 * \param RADIUS edge length of cells126 */127 LinkedCell::LinkedCell(LinkedNodes *set, const double radius) :128 LC(NULL),129 RADIUS(radius),130 index(-1)131 {132 class TesselPoint *Walker = NULL;133 for(int i=0;i<NDIM;i++)134 N[i] = 0;135 max.Zero();136 min.Zero();137 DoLog(1) && (Log() << Verbose(1) << "Begin of LinkedCell" << endl);138 if (set->empty()) {139 DoeLog(1) && (eLog()<< Verbose(1) << "set contains no linked cell nodes!" << endl);140 return;141 }142 // 1. find max and min per axis of atoms143 LinkedNodes::iterator Runner = set->begin();144 for (int i=0;i<NDIM;i++) {145 max[i] = (*Runner)->at(i);146 min[i] = (*Runner)->at(i);147 }148 for (LinkedNodes::iterator Runner = set->begin(); Runner != set->end(); Runner++) {149 Walker = *Runner;150 for (int i=0;i<NDIM;i++) {151 if (max[i] < Walker->at(i))152 max[i] = Walker->at(i);153 if (min[i] > Walker->at(i))154 min[i] = Walker->at(i);155 }156 }157 DoLog(2) && (Log() << Verbose(2) << "Bounding box is " << min << " and " << max << "." << endl);158 159 // 2. find then number of cells per axis160 for (int i=0;i<NDIM;i++) {161 N[i] = static_cast<int>(floor((max[i] - min[i])/RADIUS)+1);162 }163 DoLog(2) && (Log() << Verbose(2) << "Number of cells per axis are " << N[0] << ", " << N[1] << " and " << N[2] << "." << endl);164 165 // 3. allocate the lists166 DoLog(2) && (Log() << Verbose(2) << "Allocating cells ... ");167 if (LC != NULL) {168 DoeLog(1) && (eLog()<< Verbose(1) << "Linked Cell list is already allocated, I do nothing." << endl);169 return;170 }171 ASSERT(N[0]*N[1]*N[2] < MAX_LINKEDCELLNODES, "Number linked of linked cell nodes exceded hard-coded limit, use greater edge length!");172 LC = new LinkedNodes[N[0]*N[1]*N[2]];173 for (index=0;index<N[0]*N[1]*N[2];index++) {174 LC [index].clear();175 }176 DoLog(0) && (Log() << Verbose(0) << "done." << endl);177 178 // 4. put each atom into its respective cell179 DoLog(2) && (Log() << Verbose(2) << "Filling cells ... ");180 for (LinkedNodes::iterator Runner = set->begin(); Runner != set->end(); Runner++) {181 Walker = *Runner;182 for (int i=0;i<NDIM;i++) {183 n[i] = static_cast<int>(floor((Walker->at(i) - min[i])/RADIUS));184 }185 index = n[0] * N[1] * N[2] + n[1] * N[2] + n[2];186 LC[index].push_back(Walker);187 //Log() << Verbose(2) << *Walker << " goes into cell " << n[0] << ", " << n[1] << ", " << n[2] << " with No. " << index << "." << endl;188 }189 DoLog(0) && (Log() << Verbose(0) << "done." << endl);190 DoLog(1) && (Log() << Verbose(1) << "End of LinkedCell" << endl);191 };192 142 193 143 /** Destructor for class LinkedCell. -
src/linkedcell.hpp
r21585f raf2c424 22 22 23 23 #include <list> 24 #include <vector> 25 #include <map> 24 26 27 #include "Helpers/Assert.hpp" 28 #include "Helpers/Log.hpp" 29 #include "Helpers/Verbose.hpp" 25 30 #include "defs.hpp" 31 #include "World.hpp" 26 32 #include "LinearAlgebra/Vector.hpp" 27 33 … … 44 50 45 51 public: 46 typedef list<TesselPoint *> LinkedNodes; 52 class LinkedNodes : public std::list<TesselPoint *> { 53 public: 54 LinkedNodes(); 55 ~LinkedNodes(); 56 57 TesselPoint * getValue (const_iterator &rhs) const; 58 TesselPoint * getValue (iterator &rhs) const; 59 }; 60 //typedef list<TesselPoint *> LinkedNodes; 47 61 48 62 … … 56 70 57 71 LinkedCell(); 58 LinkedCell(const PointCloud * const set, const double RADIUS); 59 LinkedCell(LinkedNodes *set, const double radius); 72 LinkedCell(const PointCloud &set, const double radius); 73 template <class T> LinkedCell(const T &set, const double radius) : 74 LC(NULL), 75 RADIUS(radius), 76 index(-1) 77 { 78 class TesselPoint *Walker = NULL; 79 for(int i=0;i<NDIM;i++) 80 N[i] = 0; 81 max.Zero(); 82 min.Zero(); 83 DoLog(1) && (Log() << Verbose(1) << "Begin of LinkedCell" << endl); 84 if (set.begin() == set.end()) { 85 DoeLog(1) && (eLog()<< Verbose(1) << "set contains no linked cell nodes!" << endl); 86 return; 87 } 88 // 1. find max and min per axis of atoms 89 typename T::const_iterator Runner = set.begin(); 90 for (int i=0;i<NDIM;i++) { 91 max[i] = set.getValue(Runner)->at(i); 92 min[i] = set.getValue(Runner)->at(i); 93 } 94 for (typename T::const_iterator Runner = set.begin(); Runner != set.end(); Runner++) { 95 Walker = set.getValue(Runner); 96 for (int i=0;i<NDIM;i++) { 97 if (max[i] < Walker->at(i)) 98 max[i] = Walker->at(i); 99 if (min[i] > Walker->at(i)) 100 min[i] = Walker->at(i); 101 } 102 } 103 DoLog(2) && (Log() << Verbose(2) << "Bounding box is " << min << " and " << max << "." << endl); 104 105 // 2. find then number of cells per axis 106 for (int i=0;i<NDIM;i++) { 107 N[i] = static_cast<int>(floor((max[i] - min[i])/RADIUS)+1); 108 } 109 DoLog(2) && (Log() << Verbose(2) << "Number of cells per axis are " << N[0] << ", " << N[1] << " and " << N[2] << "." << endl); 110 111 // 3. allocate the lists 112 DoLog(2) && (Log() << Verbose(2) << "Allocating cells ... "); 113 if (LC != NULL) { 114 DoeLog(1) && (eLog()<< Verbose(1) << "Linked Cell list is already allocated, I do nothing." << endl); 115 return; 116 } 117 ASSERT(N[0]*N[1]*N[2] < MAX_LINKEDCELLNODES, "Number linked of linked cell nodes exceded hard-coded limit, use greater edge length!"); 118 LC = new LinkedNodes[N[0]*N[1]*N[2]]; 119 for (index=0;index<N[0]*N[1]*N[2];index++) { 120 LC [index].clear(); 121 } 122 DoLog(0) && (Log() << Verbose(0) << "done." << endl); 123 124 // 4. put each atom into its respective cell 125 DoLog(2) && (Log() << Verbose(2) << "Filling cells ... "); 126 for (typename T::const_iterator Runner = set.begin(); Runner != set.end(); Runner++) { 127 Walker = set.getValue(Runner); 128 for (int i=0;i<NDIM;i++) { 129 n[i] = static_cast<int>(floor((Walker->at(i) - min[i])/RADIUS)); 130 } 131 index = n[0] * N[1] * N[2] + n[1] * N[2] + n[2]; 132 LC[index].push_back(Walker); 133 //Log() << Verbose(2) << *Walker << " goes into cell " << n[0] << ", " << n[1] << ", " << n[2] << " with No. " << index << "." << endl; 134 } 135 DoLog(0) && (Log() << Verbose(0) << "done." << endl); 136 DoLog(1) && (Log() << Verbose(1) << "End of LinkedCell" << endl); 137 }; 138 139 60 140 ~LinkedCell(); 61 141 const LinkedCell::LinkedNodes* GetCurrentCell()const ; -
src/molecule.hpp
r21585f raf2c424 143 143 virtual bool changeId(atomId_t newId); 144 144 145 TesselPoint * getValue(const_iterator &rhs) const; 146 TesselPoint * getValue(iterator &rhs) const; 145 147 iterator begin(); 146 148 const_iterator begin() const; -
src/molecule_graph.cpp
r21585f raf2c424 156 156 if ((getAtomCount() > 1) && (bonddistance > 0.1)) { 157 157 DoLog(2) && (Log() << Verbose(2) << "Creating Linked Cell structure ... " << endl); 158 LC = new LinkedCell( this, bonddistance);158 LC = new LinkedCell(*this, bonddistance); 159 159 160 160 // create a list to map Tesselpoint::nr to atom * -
src/molecule_pointcloud.cpp
r21585f raf2c424 26 26 27 27 /************************************* Functions for class molecule *********************************/ 28 29 TesselPoint * molecule::getValue(const_iterator &rhs) const 30 { 31 return *rhs; 32 } 33 34 TesselPoint * molecule::getValue(iterator &rhs) const 35 { 36 return *rhs; 37 } 28 38 29 39 /** Returns a name for this point cloud, here the molecule's name. -
src/tesselation.cpp
r21585f raf2c424 85 85 } 86 86 ; 87 88 TesselPoint * Tesselation::getValue(const_iterator &rhs) const 89 { 90 return (*rhs).second->node; 91 } 92 93 TesselPoint * Tesselation::getValue(iterator &rhs) const 94 { 95 return (*rhs).second->node; 96 } 87 97 88 98 /** PointCloud implementation of GetCenter … … 492 502 493 503 cloud->GoToFirst(); 494 BoundaryPoints = new LinkedCell( this, 5.);504 BoundaryPoints = new LinkedCell(*this, 5.); 495 505 while (!cloud->IsEnd()) { // we only have to go once through all points, as boundary can become only bigger 496 506 if (AddFlag) { 497 507 delete (BoundaryPoints); 498 BoundaryPoints = new LinkedCell( this, 5.);508 BoundaryPoints = new LinkedCell(*this, 5.); 499 509 AddFlag = false; 500 510 } -
src/tesselation.hpp
r21585f raf2c424 27 27 28 28 #include "BoundaryMaps.hpp" 29 #include "BoundaryPointSet.hpp" 29 30 #include "PointCloud.hpp" 30 31 #include "TesselPoint.hpp" … … 143 144 int TrianglesOnBoundaryCount; 144 145 146 typedef PointMap::iterator iterator; 147 typedef PointMap::const_iterator const_iterator; 148 TesselPoint * getValue(const_iterator &rhs) const; 149 TesselPoint * getValue(iterator &rhs) const; 150 iterator begin() { return PointsOnBoundary.begin(); } 151 const_iterator begin() const { return PointsOnBoundary.begin(); } 152 iterator end() { return PointsOnBoundary.end(); } 153 const_iterator end() const { return PointsOnBoundary.end(); } 145 154 // PointCloud implementation for PointsOnBoundary 146 155 virtual Vector *GetCenter(ofstream *out) const; -
src/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp
r21585f raf2c424 102 102 // init tesselation and linked cell 103 103 Surface = new Tesselation; 104 LC = new LinkedCell( TestSurfaceMolecule, 5.);104 LC = new LinkedCell(*TestSurfaceMolecule, 5.); 105 105 FindNonConvexBorder(TestSurfaceMolecule, Surface, (const LinkedCell *&)LC, 2.5, NULL); 106 106 -
src/unittests/LinkedCellUnitTest.cpp
r21585f raf2c424 68 68 69 69 // construct linked cell 70 LC = new LinkedCell ( TestMolecule, 1.);70 LC = new LinkedCell (*TestMolecule, 1.); 71 71 CPPUNIT_ASSERT(LC != NULL && "could not create LinkedCell"); 72 72 -
src/unittests/tesselation_insideoutsideunittest.cpp
r21585f raf2c424 94 94 95 95 // create linkedcell 96 LinkedList = new LinkedCell( &Corners, 2.*SPHERERADIUS);96 LinkedList = new LinkedCell(Corners, 2.*SPHERERADIUS); 97 97 98 98 // create tesselation -
src/unittests/tesselationunittest.cpp
r21585f raf2c424 71 71 72 72 // create linkedcell 73 LinkedList = new LinkedCell( &Corners, 2.*SPHERERADIUS);73 LinkedList = new LinkedCell(Corners, 2.*SPHERERADIUS); 74 74 75 75 // create tesselation
Note:
See TracChangeset
for help on using the changeset viewer.