Allow rotation to be set without fill assigned when reading summary file

This commit is contained in:
Paul Romano 2016-05-10 11:55:38 -05:00
parent 962d592d2e
commit 10f498177e

View file

@ -267,7 +267,7 @@ class Summary(object):
rotation = \
self._f['geometry/cells'][key]['rotation'][...]
rotation = np.asarray(rotation, dtype=np.int)
cell.rotation = rotation
cell._rotation = rotation
# Store Cell fill information for after Universe/Lattice creation
self._cell_fills[index] = (fill_type, fill)