--- trunk/src/math/ConvexHull.hpp 2008/10/20 19:36:32 1307 +++ trunk/src/math/ConvexHull.hpp 2008/11/14 15:44:34 1316 @@ -44,7 +44,7 @@ * * Created by Charles F. Vardeman II on 11 Dec 2006. * @author Charles F. Vardeman II - * @version $Id: ConvexHull.hpp,v 1.14 2008-10-20 19:36:32 chuckv Exp $ + * @version $Id: ConvexHull.hpp,v 1.16 2008-11-14 15:44:34 chuckv Exp $ * */ @@ -88,7 +88,7 @@ namespace oopse { int getNs(){return Ns_;} //Number of Surface Atoms RealType getVolume(){return volume_;} //Total Volume inclosed by Hull std::vector< StuntDouble* > getSurfaceAtoms(){return surfaceSDs_;} //Returns a list of surface atoms - std::vector getMesh(){return Triangles_;} + std::vector getMesh(){return Triangles_;} int getNMeshElements() {return nTriangles_;} void printHull(const std::string& geomFileName); protected: @@ -101,11 +101,12 @@ namespace oopse { const std::string options_; private: - std::vector Triangles_; + std::vector Triangles_; #ifdef IS_MPI int* NstoProc_; int* displs_; + int* vecdispls_; int Nsglobal_; int nproc_; int myrank_;