| 
  | getNeighborPBCBond(self,
        cell_indices,
        ncella,
        ncellb,
        ncellc,
        cell_size,
        cell_delta,
        tail_head)
   |  |  Return a (tail, head) ordered tuple of atom indices for the 
  neighboring PBC bond in the cell given by the cell delta. If this cell is
  the first or last cell then it will wrap around to the ending or 
  beginning cell, respectively. 
    Parameters:
        cell_indices(tuple) - a triple of cell indicesncella(int) - the number of cells along ancellb(int) - the number of cells along bncellc(int) - the number of cells along ccell_size(int) - the number of atoms in a cellcell_delta(tuple) - a triple of cell deltas which provide the neighboring cells 
          locationtail_head(tuple) - provides the tail and head atom indices for this PBC bond given 
          the cell deltaReturns: tupleatom indices for the neighboring PBC bond |