Updating lbpm_uCT_pp.cpp with new Array class, adding imfilter

This commit is contained in:
Mark Berrill
2016-05-24 10:34:33 -04:00
parent 59541e779b
commit 1b36f74bdf
9 changed files with 1671 additions and 318 deletions

View File

@@ -547,7 +547,7 @@ void Domain::CommunicateMeshHalo(DoubleArray &Mesh)
{
int sendtag, recvtag;
sendtag = recvtag = 7;
double *MeshData = Mesh.get();
double *MeshData = Mesh.data();
PackMeshData(sendList_x, sendCount_x ,sendData_x, MeshData);
PackMeshData(sendList_X, sendCount_X ,sendData_X, MeshData);
PackMeshData(sendList_y, sendCount_y ,sendData_y, MeshData);
@@ -631,7 +631,7 @@ void Domain::BlobComm(MPI_Comm Communicator)
int sendtag, recvtag;
sendtag = recvtag = 51;
//......................................................................................
int *BlobLabelData = BlobLabel.get();
int *BlobLabelData = BlobLabel.data();
PackBlobData(sendList_x, sendCount_x ,sendBuf_x, BlobLabelData);
PackBlobData(sendList_X, sendCount_X ,sendBuf_X, BlobLabelData);
PackBlobData(sendList_y, sendCount_y ,sendBuf_y, BlobLabelData);