fixed issue with statepoint.py modifying delayed-nu-fission score

This commit is contained in:
samuel shaner 2015-10-20 15:35:14 +00:00
parent 4e75a2e15c
commit 37c4d9fa89

View file

@ -431,7 +431,7 @@ class StatePoint(object):
for j, score in enumerate(scores):
score = score.decode()
# If this is a scattering moment, insert the scattering order
if '-n' in score:
if '-n' in score and 'delayed' not in score:
score = score.replace('-n', '-' + moments[j].decode())
elif '-pn' in score:
score = score.replace('-pn', '-' + moments[j].decode())