Remove alive_ data member on ParticleData

This commit is contained in:
Paul Romano 2022-03-01 14:33:15 -06:00
parent 37fbf7c243
commit 2bb6ba25af
7 changed files with 17 additions and 23 deletions

View file

@ -15,7 +15,6 @@ void russian_roulette(Particle& p, double weight_survive)
p.wgt() = weight_survive;
} else {
p.wgt() = 0.;
p.alive() = false;
}
}