| 1 | 
+ | 
#define _FILE_OFFSET_BITS 64 | 
| 2 | 
+ | 
 | 
| 3 | 
  | 
#include <cstring> | 
| 4 | 
  | 
#include <iostream> | 
| 5 | 
  | 
#include <fstream> | 
| 72 | 
  | 
  char tempBuffer[BUFFERSIZE]; | 
| 73 | 
  | 
  char writeLine[BUFFERSIZE]; | 
| 74 | 
  | 
 | 
| 75 | 
< | 
  int i, j, which_node, done, which_atom, local_index; | 
| 75 | 
> | 
  int i; | 
| 76 | 
> | 
#ifdef IS_MPI | 
| 77 | 
> | 
  int j, which_node, done, which_atom, local_index; | 
| 78 | 
> | 
#else //is_mpi | 
| 79 | 
> | 
  int nAtoms = entry_plug->n_atoms; | 
| 80 | 
> | 
#endif //is_mpi | 
| 81 | 
> | 
 | 
| 82 | 
  | 
  double q[4]; | 
| 83 | 
  | 
  DirectionalAtom* dAtom; | 
| 76 | 
– | 
  int nAtoms = entry_plug->n_atoms; | 
| 84 | 
  | 
  Atom** atoms = entry_plug->atoms; | 
| 78 | 
– | 
 | 
| 85 | 
  | 
  double pos[3], vel[3]; | 
| 86 | 
  | 
     | 
| 87 | 
  | 
 | 
| 353 | 
  | 
 | 
| 354 | 
  | 
  double q[4]; | 
| 355 | 
  | 
  DirectionalAtom* dAtom; | 
| 350 | 
– | 
  int nAtoms = entry_plug->n_atoms; | 
| 356 | 
  | 
  Atom** atoms = entry_plug->atoms; | 
| 357 | 
< | 
  int i, j, which_node, done, game_over, which_atom, local_index; | 
| 357 | 
> | 
  int i; | 
| 358 | 
> | 
#ifdef IS_MPI | 
| 359 | 
> | 
  int j, which_node, done, which_atom, local_index; | 
| 360 | 
> | 
#else //is_mpi | 
| 361 | 
> | 
  int nAtoms = entry_plug->n_atoms; | 
| 362 | 
> | 
#endif //is_mpi | 
| 363 | 
  | 
   | 
| 364 | 
  | 
  double pos[3], vel[3]; | 
| 365 | 
  | 
   |