Changeset eb167d


Ignore:
Timestamp:
Aug 3, 2009, 3:26:32 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
f4a346
Parents:
4dca8e
Message:

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

Location:
molecuilder/src
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/bond.cpp

    r4dca8e reb167d  
    66
    77#include "bond.hpp"
    8 
    98
    109/***************************************** Functions for class bond ********************************/
  • molecuilder/src/bond.hpp

    r4dca8e reb167d  
    1515#include <config.h>
    1616#endif
    17 
    1817
    1918#include "atom.hpp"
  • molecuilder/src/boundary.cpp

    r4dca8e reb167d  
     1/** \file boundary.hpp
     2 *
     3 * Implementations and super-function for envelopes
     4 */
     5
     6
    17#include "boundary.hpp"
    28
  • molecuilder/src/boundary.hpp

    r4dca8e reb167d  
    99// STL headers
    1010#include <map>
    11 #include <set>
    12 #include <deque>
    1311
    1412#include "config.hpp"
     
    1614#include "molecules.hpp"
    1715#include "tesselation.hpp"
    18 #include "tesselationhelpers.hpp"
    1916
    2017#define DEBUG 1
     
    2623#define Raster3DSuffix ".r3d"
    2724#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>
    2833
    2934double VolumeOfConvexEnvelope(ofstream *out, class Tesselation *TesselStruct, class config *configuration);
  • molecuilder/src/config.hpp

    r4dca8e reb167d  
    1515#include <config.h>
    1616#endif
    17 
    1817
    1918#include "molecules.hpp"
  • molecuilder/src/helpers.hpp

    r4dca8e reb167d  
    2020#include <math.h>
    2121#include <string>
    22 #include <string.h>
    23 #include <stdio.h>
    24 #include <stdlib.h>
    25 #include <time.h>
    2622
    2723#include "defs.hpp"
  • molecuilder/src/linkedcell.cpp

    r4dca8e reb167d  
     1/** \file linkedcell.cpp
     2 *
     3 * Function implementations for the class LinkedCell.
     4 *
     5 */
     6
     7
    18#include "linkedcell.hpp"
    29#include "molecules.hpp"
  • molecuilder/src/molecules.hpp

    r4dca8e reb167d  
    1818#include <gsl/gsl_randist.h>
    1919
    20 // STL headers
     20//// STL headers
    2121#include <map>
    2222#include <set>
     
    2828#include "bond.hpp"
    2929#include "element.hpp"
    30 #include "helpers.hpp"
    3130#include "linkedcell.hpp"
    3231#include "parser.hpp"
     
    5049#define GraphTestPair pair<Graph::iterator, bool>
    5150
     51#define MoleculeList list <molecule *>
     52#define MoleculeListTest pair <MoleculeList::iterator, bool>
     53
    5254#define DistancePair pair < double, atom* >
    5355#define DistanceMap multimap < double, atom* >
    5456#define DistanceTestPair pair < DistanceMap::iterator, bool>
    5557
    56 #define Boundaries map <double, DistancePair >
    57 #define BoundariesPair pair<double, DistancePair >
    58 #define BoundariesTestPair pair< Boundaries::iterator, bool>
    59 
    60 #define MoleculeList list <molecule *>
    61 #define MoleculeListTest pair <MoleculeList::iterator, bool>
    62 
    63 #define LinkedAtoms list <atom *>
     58
     59//#define LinkedAtoms list <atom *>
    6460
    6561/******************************** Some small functions and/or structures **********************************/
  • molecuilder/src/vector.cpp

    r4dca8e reb167d  
    44 *
    55 */
     6
    67
    78#include "molecules.hpp"
Note: See TracChangeset for help on using the changeset viewer.