| 2 |
|
|
| 3 |
|
#ifdef IS_MPI |
| 4 |
|
#include <mpi.h> |
| 5 |
– |
#include <mpi++.h> |
| 5 |
|
#endif // is_mpi |
| 6 |
|
|
| 7 |
|
|
| 15 |
|
|
| 16 |
|
#ifdef IS_MPI |
| 17 |
|
double tempBig = bigSigma; |
| 18 |
< |
MPI::COMM_WORLD.Allreduce( &tempBig, &bigSigma, 1, MPI_DOUBLE, MPI_MAX ); |
| 18 |
> |
MPI_Allreduce( &tempBig, &bigSigma, 1, MPI_DOUBLE, MPI_MAX, |
| 19 |
> |
MPI_COMM_WORLD); |
| 20 |
|
#endif //is_mpi |
| 21 |
|
|
| 22 |
|
//calc rCut and rList |
| 58 |
|
for(i=0; i<entry_plug->n_atoms; i++){ |
| 59 |
|
entry_plug->atoms[i]->zeroForces(); |
| 60 |
|
|
| 61 |
< |
if( entry_plug->atoms[i]->isDirectional() ){ |
| 62 |
< |
dAtom = (DirectionalAtom *)entry_plug->atoms[i]; |
| 63 |
< |
dAtom->getU(ut); |
| 61 |
> |
// if( entry_plug->atoms[i]->isDirectional() ){ |
| 62 |
> |
// dAtom = (DirectionalAtom *)entry_plug->atoms[i]; |
| 63 |
> |
// dAtom->getU(ut); |
| 64 |
|
|
| 65 |
|
|
| 66 |
< |
if(dAtom->getIndex()== 1){ |
| 67 |
< |
std::cerr << "atom 2's u_l = " << ut[0] << ", " << ut[1] |
| 68 |
< |
<< ", " << ut[2] << "\n"; |
| 69 |
< |
} |
| 70 |
< |
} |
| 66 |
> |
// if(dAtom->getIndex()== 1){ |
| 67 |
> |
// std::cerr << "atom 2's u_l = " << ut[0] << ", " << ut[1] |
| 68 |
> |
// << ", " << ut[2] << "\n"; |
| 69 |
> |
// } |
| 70 |
> |
// } |
| 71 |
|
|
| 72 |
|
} |
| 73 |
|
|