Replace missing reaction product in depletion chain generation

This commit is contained in:
Paul Romano 2020-07-20 21:11:03 -05:00
parent c3368d2c11
commit 1703d2a3ca

View file

@ -413,7 +413,9 @@ class Chain:
chain.reactions.append(name)
if daughter not in decay_data:
missing_rx_product.append((parent, name, daughter))
daughter = replace_missing(daughter, decay_data)
if daughter is None:
missing_rx_product.append((parent, name, daughter))
# Store Q value
for mt in sorted(mts):