Removed new variables from the statepoint python file as they are no longer read out

This commit is contained in:
stevendargaville 2020-02-13 14:44:53 +00:00
parent 68312dd981
commit 18b469bfa5

View file

@ -77,10 +77,6 @@ class StatePoint(object):
Number of batches
n_inactive : int
Number of inactive batches
n_max_lost_particles : int
Number of max lost particles
relative_max_lost_particles : float
Number of max lost particles, relative to the total number of particles
n_particles : int
Number of particles per generation
n_realizations : int
@ -316,10 +312,6 @@ class StatePoint(object):
else:
return None
@property
def n_max_lost_particles(self):
return self._f['n_max_lost_particles'][()]
@property
def relative_max_lost_particles(self):
return self._f['relative_max_lost_particles'][()]