Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgrote committed Oct 3, 2023
1 parent ed6acff commit 44614d8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Source/Particles/MultiParticleContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1527,7 +1527,7 @@ void MultiParticleContainer::doQedBreitWheeler (int lev,
pti, lev, Ex.nGrowVect(),
Ex[pti], Ey[pti], Ez[pti],
Bx[pti], By[pti], Bz[pti],
m_E_external_particle, m_E_external_particle);
m_E_external_particle, m_B_external_particle);

auto& src_tile = pc_source->ParticlesAt(lev, pti);
auto& dst_ele_tile = pc_product_ele->ParticlesAt(lev, pti);
Expand Down Expand Up @@ -1605,7 +1605,8 @@ void MultiParticleContainer::doQedQuantumSync (int lev,
m_shr_p_qs_engine->build_phot_em_functor(),
pti, lev, Ex.nGrowVect(),
Ex[pti], Ey[pti], Ez[pti],
Bx[pti], By[pti], Bz[pti]);
Bx[pti], By[pti], Bz[pti],
m_E_external_particle, m_B_external_particle);

auto& src_tile = pc_source->ParticlesAt(lev, pti);
auto& dst_tile = pc_product_phot->ParticlesAt(lev, pti);
Expand Down

0 comments on commit 44614d8

Please sign in to comment.