source: molecuilder/src/boundary.hpp@ 8b6ee4

Last change on this file since 8b6ee4 was 17b3a5c, checked in by Frederik Heber <heber@…>, 16 years ago

forward declarations used to untangle interdependet classes.

  • basically, everywhere in header files we removed '#include' lines were only pointer to the respective classes were used and the include line was moved to the implementation file.
  • as a sidenote, lots of funny errors happened because headers were included via a nesting over three other includes. Now, all should be declared directly as needed, as only very little include lines remain in header files.
  • Property mode set to 100755
File size: 2.5 KB
Line 
1#ifndef BOUNDARY_HPP_
2#define BOUNDARY_HPP_
3
4using namespace std;
5
6/*********************************************** includes ***********************************/
7
8// include config.h
9#ifdef HAVE_CONFIG_H
10#include <config.h>
11#endif
12
13#include <fstream>
14#include <iostream>
15
16// STL headers
17#include <map>
18
19#include "defs.hpp"
20
21/****************************************** forward declarations *****************************/
22
23class atom;
24class BoundaryPointSet;
25class BoundaryLineSet;
26class BoundaryTriangleSet;
27class config;
28class LinkedCell;
29class molecule;
30class MoleculeListClass;
31class Tesselation;
32class Vector;
33
34/********************************************** definitions *********************************/
35
36#define DEBUG 1
37#define DoSingleStepOutput 0
38#define SingleStepWidth 1
39
40#define DistancePair pair < double, atom* >
41#define DistanceMap multimap < double, atom* >
42#define DistanceTestPair pair < DistanceMap::iterator, bool>
43
44#define Boundaries map <double, DistancePair >
45#define BoundariesPair pair<double, DistancePair >
46#define BoundariesTestPair pair< Boundaries::iterator, bool>
47
48/********************************************** declarations *******************************/
49
50double VolumeOfConvexEnvelope(ofstream *out, class Tesselation *TesselStruct, class config *configuration);
51double * GetDiametersOfCluster(ofstream *out, Boundaries *BoundaryPtr, molecule *mol, bool IsAngstroem);
52void PrepareClustersinWater(ofstream *out, config *configuration, molecule *mol, double ClusterVolume, double celldensity);
53molecule * FillBoxWithMolecule(ofstream *out, MoleculeListClass *List, molecule *filler, config &configuration, double distance[NDIM], double RandAtomDisplacement, double RandMolDisplacement, bool DoRandomRotation);
54void FindConvexBorder(ofstream *out, molecule* mol, class LinkedCell *LCList, const char *filename);
55void FindNonConvexBorder(ofstream *out, molecule* mol, class LinkedCell *LC, const double RADIUS, const char *tempbasename);
56double ConvexizeNonconvexEnvelope(ofstream *out, class Tesselation *TesselStruct, molecule *mol, char *filename);
57void FindNextSuitablePoint(class BoundaryTriangleSet *BaseTriangle, class BoundaryLineSet *BaseLine, atom*& OptCandidate, Vector *OptCandidateCenter, double *ShortestAngle, const double RADIUS, LinkedCell *LC);
58Boundaries *GetBoundaryPoints(ofstream *out, molecule *mol);
59void StoreTrianglesinFile(ofstream *out, molecule *mol, const char *filename, const char *extraSuffix);
60bool RemoveAllBoundaryPoints(ofstream *out, class Tesselation *TesselStruct, molecule *mol, char *filename);
61
62
63#endif /*BOUNDARY_HPP_*/
Note: See TracBrowser for help on using the repository browser.