Minor update of VasprunxmlExpat

This commit is contained in:
Atsushi Togo 2017-10-09 17:13:17 +09:00
parent 2a8f7a07c6
commit 7c5066f056
1 changed files with 0 additions and 9 deletions

View File

@ -754,15 +754,6 @@ class VasprunxmlExpat(object):
def get_symbols(self):
return self._symbols
def get_cells(self):
cells = []
if len(self._all_points) == len(self._all_lattice):
for p, l in zip(self._all_points, self._all_lattice):
cells.append(Cell(lattice=l,
points=p,
symbols=self._symbols))
return cells
def get_energies(self):
return np.array(self._all_energies)