From aa6adfa7b8528beb1cdc8cc0913d5e5a39ef02ad Mon Sep 17 00:00:00 2001 From: GuySten Date: Wed, 11 Mar 2026 00:00:58 +0200 Subject: [PATCH] ran clang format --- src/tallies/tally_scoring.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tallies/tally_scoring.cpp b/src/tallies/tally_scoring.cpp index b010e202e..af2ae81d2 100644 --- a/src/tallies/tally_scoring.cpp +++ b/src/tallies/tally_scoring.cpp @@ -2648,7 +2648,7 @@ void score_meshsurface_tally(Particle& p, const vector& tallies) // for a further scoring function. double score = current * filter_weight; for (auto score_index = 0; score_index < tally.scores_.size(); - ++score_index) { + ++score_index) { #pragma omp atomic tally.results_(filter_index, score_index, TallyResult::VALUE) += score; } @@ -2702,7 +2702,7 @@ void score_surface_tally( // Loop over scores. for (auto score_index = 0; score_index < tally.scores_.size(); - ++score_index) { + ++score_index) { auto score_bin = tally.scores_[score_index]; double score; if (score_bin == SCORE_CURRENT) { @@ -2781,7 +2781,7 @@ void score_pulse_height_tally(Particle& p, const vector& tallies) // Loop over scores. for (auto score_index = 0; score_index < tally.scores_.size(); - ++score_index) { + ++score_index) { #pragma omp atomic tally.results_(filter_index, score_index, TallyResult::VALUE) += filter_weight;