ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/mpiForceField.c
Revision: 976
Committed: Thu Jan 22 17:34:20 2004 UTC (20 years, 5 months ago) by chrisfen
Content type: text/plain
File size: 393 byte(s)
Log Message:
Corrected spelling in several directories, and stated WATER.cpp

File Contents

# User Rev Content
1 mmeineke 377 #ifdef IS_MPI
2    
3     #include <stdio.h>
4     #include <stdlib.h>
5     #include <string.h>
6     #include <mpi.h>
7    
8     #include "mpiForceField.h"
9    
10    
11    
12    
13     void sendFrcStruct( void *frcStruct, MPI_Datatype structType ){
14    
15     MPI_Bcast(frcStruct,1,structType,0,MPI_COMM_WORLD);
16     }
17    
18    
19 chrisfen 976 void receiveFrcStruct( void *frcStruct, MPI_Datatype structType ){
20 mmeineke 377
21     MPI_Bcast(frcStruct,1,structType,0,MPI_COMM_WORLD);
22     }
23    
24    
25     #endif // is_mpi