Skip to content

Commit

Permalink
Fix small merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
tobre1 committed Oct 25, 2023
1 parent 7723298 commit 3e5e8a4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions include/Models/SF6O2Etching.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,8 @@ class Ion : public rayParticle<Ion<NumericType, D>, NumericType> {
// M_PI_2 - std::min(incAngle, minAngle), rayDir, geomNormal, Rng);
auto direction = rayReflectionSpecular<NumericType>(rayDir, geomNormal);

return std::pair<NumericType, rayTriple<NumericType>> {
1. - Eref_peak, direction
}
return std::pair<NumericType, rayTriple<NumericType>>{1. - Eref_peak,
direction};
} else {
return std::pair<NumericType, rayTriple<NumericType>>{
1., rayTriple<NumericType>{0., 0., 0.}};
Expand Down

0 comments on commit 3e5e8a4

Please sign in to comment.