Changes in src/boundary.hpp [88b400:6b5657]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/boundary.hpp
r88b400 r6b5657 1 1 #ifndef BOUNDARY_HPP_ 2 2 #define BOUNDARY_HPP_ 3 4 using namespace std;5 3 6 4 /*********************************************** includes ***********************************/ … … 18 16 19 17 #include "defs.hpp" 18 #include "BoundaryMaps.hpp" 20 19 21 20 /****************************************** forward declarations *****************************/ 22 21 23 class atom;24 22 class BoundaryPointSet; 25 23 class BoundaryLineSet; … … 30 28 class MoleculeListClass; 31 29 class Tesselation; 30 class TesselPoint; 32 31 class Vector; 33 32 … … 38 37 enum { SingleStepWidth=10 }; 39 38 40 typedef std::pair < double, class atom* > DistancePair;41 typedef std::multimap < double, class atom* > DistanceMap;42 typedef std::pair < DistanceMap::iterator, bool> DistanceTestPair;43 44 typedef std::map <double, DistancePair > Boundaries;45 typedef std::pair<double, DistancePair > BoundariesPair;46 typedef std::pair< Boundaries::iterator, bool> BoundariesTestPair;47 48 39 /********************************************** declarations *******************************/ 49 40 … … 52 43 void FindConvexBorder(const molecule* const mol, Boundaries *BoundaryPts, Tesselation *&TesselStruct, const LinkedCell *LCList, const char *filename); 53 44 Vector* FindEmbeddingHole(MoleculeListClass *mols, molecule *srcmol); 54 void FindNextSuitablePoint(class BoundaryTriangleSet *BaseTriangle, class BoundaryLineSet *BaseLine, atom*& OptCandidate, Vector *OptCandidateCenter, double *ShortestAngle, const double RADIUS, LinkedCell *LC);55 45 bool FindNonConvexBorder(const molecule* const mol, Tesselation *&TesselStruct, const LinkedCell *&LC, const double RADIUS, const char *tempbasename); 56 46 Boundaries *GetBoundaryPoints(const molecule *mol, Tesselation *&TesselStruct);
Note:
See TracChangeset
for help on using the changeset viewer.