ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libBASS/mpiBASS.c
(Generate patch)

Comparing trunk/OOPSE/libBASS/mpiBASS.c (file contents):
Revision 1152 by gezelter, Thu Jan 29 23:01:17 2004 UTC vs.
Revision 1153 by gezelter, Tue May 11 04:21:52 2004 UTC

# Line 66 | Line 66 | void throwMPIEvent(event* the_event)
66        mpiEventContainer.i1 = the_event->evt.blk_index; // pack block index into first int  
67      break;
68  
69 +    case CUTOFFGROUP:
70 +      mpiEventContainer.type = mpiCUTOFFGROUP;
71 +      mpiEventContainer.i1 = the_event->evt.blk_index; // pack block index into first int  
72 +    break;
73 +
74      case ATOM:
75        mpiEventContainer.type = mpiATOM;
76        mpiEventContainer.i1 = the_event->evt.blk_index; // pack block index into first int
# Line 198 | Line 203 | void mpiEventLoop(void)
203            "  ORIENTATION %d\n"
204            "  ZCONSTRAINT %d\n"
205            "  RIGIDBODY   %d\n"
206 +          "  CUTOFFGROUP %d\n"
207            "  BLOCK_END   %d\n"
208            "\n",
209            worldRank,
210            MOLECULE, ATOM, BOND, BEND, TORSION, COMPONENT,
211            POSITION, ASSIGNMENT, MEMBERS, CONSTRAINT, ORIENTATION,
212 <          ZCONSTRAINT, RIGIDBODY, BLOCK_END );
212 >          ZCONSTRAINT, RIGIDBODY, CUTOFFGROUP, BLOCK_END );
213   #endif
214  
215    MPI_Bcast(&mpiContinue,1,MPI_INT,0,MPI_COMM_WORLD);
# Line 239 | Line 245 | void mpiCatchEvent(void)
245      the_event.event_type = RIGIDBODY;
246      the_event.evt.blk_index = mpiEventContainer.i1;
247      break;
248 +
249 +  case mpiCUTOFFGROUP:
250 +    the_event.event_type = CUTOFFGROUP;
251 +    the_event.evt.blk_index = mpiEventContainer.i1;
252 +    break;
253      
254    case mpiATOM:
255      the_event.event_type = ATOM;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines