Correction to match's weights vector.

This commit is contained in:
Patrick Shriwise 2021-07-29 20:02:15 -05:00
parent 3114c93562
commit f5651337e1

View file

@ -97,7 +97,7 @@ CellInstanceFilter::get_all_bins(const Particle& p, TallyEstimator estimator,
auto search = map_.find({index_cell, instance});
if (search != map_.end()) {
match.bins_.push_back(search->second);
match.bins_.push_back(1.0);
match.weights_.push_back(1.0);
}
}
}