added clang format

This commit is contained in:
myerspat 2022-06-10 11:57:35 -05:00
parent 70b1706460
commit 98a7d5eabc
2 changed files with 6 additions and 6 deletions

View file

@ -361,9 +361,8 @@ void sample_photon_reaction(Particle& p)
continue;
// Evaluation subshell photoionization cross section
prob += std::exp(xs_lower(i_shell) +
f * (xs_upper(i_shell) -
xs_lower(i_shell)));
prob += std::exp(
xs_lower(i_shell) + f * (xs_upper(i_shell) - xs_lower(i_shell)));
if (prob > cutoff) {
double E_electron = p.E() - shell.binding_energy;