ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/selection/HullFinder.hpp
(Generate patch)

Comparing trunk/src/selection/HullFinder.hpp (file contents):
Revision 1903 by gezelter, Tue Jul 16 18:58:08 2013 UTC vs.
Revision 1953 by gezelter, Thu Dec 5 18:19:26 2013 UTC

# Line 42 | Line 42
42   #ifndef SELECTION_HULLFINDER_HPP
43   #define SELECTION_HULLFINDER_HPP
44   #include "brains/SimInfo.hpp"
45 < #include "utils/OpenMDBitSet.hpp"
45 > #include "selection/SelectionSet.hpp"
46   #include "primitives/StuntDouble.hpp"
47   #include "math/Hull.hpp"
48   #include "math/Triangle.hpp"
# Line 54 | Line 54 | namespace OpenMD {
54      HullFinder(SimInfo* si);
55      ~HullFinder();
56      
57 <    OpenMDBitSet findHull();
58 <    OpenMDBitSet findHull(int frame);
57 >    SelectionSet findHull();
58 >    SelectionSet findHull(int frame);
59      RealType getSurfaceArea(){ return surfaceArea_; }
60      
61      SimInfo* info_;
62      std::vector<StuntDouble*> stuntdoubles_;
63 <    int nStuntDoubles_;
63 >    std::vector<Bond*> bonds_;
64 >    std::vector<Bend*> bends_;
65 >    std::vector<Torsion*> torsions_;
66 >    std::vector<Inversion*> inversions_;
67 >    vector<int> nObjects_;
68 >
69      Hull* surfaceMesh_;
70      RealType surfaceArea_;
71      std::vector<StuntDouble*> localSites_;
67
72    };
73    
74   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines