ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/DumpWriter.cpp
(Generate patch)

Comparing trunk/OOPSE/libmdtools/DumpWriter.cpp (file contents):
Revision 952 by tim, Fri Jan 16 21:55:39 2004 UTC vs.
Revision 1078 by tim, Tue Mar 2 20:32:40 2004 UTC

# Line 1 | Line 1
1 + #define _LARGEFILE_SOURCE64
2   #define _FILE_OFFSET_BITS 64
3  
4   #include <string.h>
# Line 95 | Line 96 | void DumpWriter::sortByGlobalIndex(){
96      indexArray.push_back(make_pair(i, atoms[i]->getGlobalIndex()));
97    
98    sort(indexArray.begin(), indexArray.end(), indexSortingCriterion);    
98
99  //for (int i = 0; i < mpiSim->getMyNlocal(); i++) {
100  //  printf("node %d has global %d at local %d\n", worldRank, indexArray[i].second, indexArray[i].first);
101  //}
102    
99   }
100  
101   #endif
# Line 394 | Line 390 | void DumpWriter::writeFrame( vector<ofstream*>& outFil
390          
391          haveError = 0;
392          which_atom = i;
397        
398        //local_index = -1;
399
400        //for (j=0; (j<mpiSim->getMyNlocal()) && (local_index < 0); j++) {
401        //  if (atoms[j]->getGlobalIndex() == which_atom) local_index = j;
402        //}
393          
404        //if (local_index != -1) {
405          
394            local_index = indexArray[currentIndex].first;        
395            
396            if (which_atom == indexArray[currentIndex].second) {
# Line 531 | Line 519 | void DumpWriter::writeFrame( vector<ofstream*>& outFil
519          }
520          which_atom = i;
521  
534        //local_index = -1;
535
536        //for (j=0; (j<mpiSim->getMyNlocal()) && (local_index < 0); j++) {
537        // if (atoms[j]->getGlobalIndex() == which_atom) local_index = j;
538        //}
539        
540        //if (local_index != -1) {
541
522          local_index = indexArray[currentIndex].first;        
523                  
524          if (which_atom == indexArray[currentIndex].second) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines