/beegfs/hackathon/users/eoseret/qaas_runs_test/178-663-3083/intel/CoMD/build/CoMD/CoMD/src-openmp/linkCells.c: 325 - 335
--------------------------------------------------------------------------------

325: void copyAtom(LinkCell* boxes, Atoms* atoms, int iAtom, int iBox, int jAtom, int jBox)
326: {
327:    const int iOff = MAXATOMS*iBox+iAtom;
328:    const int jOff = MAXATOMS*jBox+jAtom;
329:    atoms->gid[jOff] = atoms->gid[iOff];
330:    atoms->iSpecies[jOff] = atoms->iSpecies[iOff];
331:    memcpy(atoms->r[jOff], atoms->r[iOff], sizeof(real3));
332:    memcpy(atoms->p[jOff], atoms->p[iOff], sizeof(real3));
333:    memcpy(atoms->f[jOff], atoms->f[iOff], sizeof(real3));
334:    memcpy(atoms->U+jOff,  atoms->U+iOff,  sizeof(real_t));
335: }
