source: molecuilder/src/boundary.hpp@ f4a346

Last change on this file since f4a346 was eb167d, checked in by Frederik Heber <heber@…>, 16 years ago

Some minor fixes with regards to what needs to be included where and not more.

  • Property mode set to 100755
File size: 1.9 KB
Line 
1#ifndef BOUNDARY_HPP_
2#define BOUNDARY_HPP_
3
4// include config.h
5#ifdef HAVE_CONFIG_H
6#include <config.h>
7#endif
8
9// STL headers
10#include <map>
11
12#include "config.hpp"
13#include "linkedcell.hpp"
14#include "molecules.hpp"
15#include "tesselation.hpp"
16
17#define DEBUG 1
18#define DoSingleStepOutput 0
19#define DoTecplotOutput 1
20#define DoRaster3DOutput 1
21#define DoVRMLOutput 1
22#define TecplotSuffix ".dat"
23#define Raster3DSuffix ".r3d"
24#define VRMLSUffix ".wrl"
25
26#define DistancePair pair < double, atom* >
27#define DistanceMap multimap < double, atom* >
28#define DistanceTestPair pair < DistanceMap::iterator, bool>
29
30#define Boundaries map <double, DistancePair >
31#define BoundariesPair pair<double, DistancePair >
32#define BoundariesTestPair pair< Boundaries::iterator, bool>
33
34double VolumeOfConvexEnvelope(ofstream *out, class Tesselation *TesselStruct, class config *configuration);
35double * GetDiametersOfCluster(ofstream *out, Boundaries *BoundaryPtr, molecule *mol, bool IsAngstroem);
36void PrepareClustersinWater(ofstream *out, config *configuration, molecule *mol, double ClusterVolume, double celldensity);
37molecule * FillBoxWithMolecule(ofstream *out, MoleculeListClass *List, molecule *filler, config &configuration, double distance[NDIM], double RandAtomDisplacement, double RandMolDisplacement, bool DoRandomRotation);
38void Find_convex_border(ofstream *out, molecule* mol, class Tesselation *&TesselStruct, class LinkedCell *LCList, const char *filename);
39void Find_non_convex_border(ofstream *out, molecule* mol, class Tesselation *T, class LinkedCell *LC, const char *tempbasename, const double RADIUS);
40void Find_next_suitable_point(class BoundaryTriangleSet *BaseTriangle, class BoundaryLineSet *BaseLine, atom*& OptCandidate, Vector *OptCandidateCenter, double *ShortestAngle, const double RADIUS, LinkedCell *LC);
41Boundaries *GetBoundaryPoints(ofstream *out, molecule *mol);
42
43#endif /*BOUNDARY_HPP_*/
Note: See TracBrowser for help on using the repository browser.