diff options
author | 2019-09-20 08:31:15 -0700 | |
---|---|---|
committer | 2019-09-20 08:31:15 -0700 | |
commit | e6f4766746f2cf5954babea96252cea010cffae4 (patch) | |
tree | b9ee6e4fa52769bf46bc092b3fa7114af141d9b8 /Source/Particles/PhotonParticleContainer.cpp | |
parent | 81ba2d8fd0d5ed8e045014126590e510057dee57 (diff) | |
parent | 9d739e1779281296c9a8c17b022b4e88b052feb8 (diff) | |
download | WarpX-e6f4766746f2cf5954babea96252cea010cffae4.tar.gz WarpX-e6f4766746f2cf5954babea96252cea010cffae4.tar.zst WarpX-e6f4766746f2cf5954babea96252cea010cffae4.zip |
Merge branch 'dev' into physics_constants
Diffstat (limited to 'Source/Particles/PhotonParticleContainer.cpp')
-rw-r--r-- | Source/Particles/PhotonParticleContainer.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/Particles/PhotonParticleContainer.cpp b/Source/Particles/PhotonParticleContainer.cpp index 55dc839eb..9de441e5c 100644 --- a/Source/Particles/PhotonParticleContainer.cpp +++ b/Source/Particles/PhotonParticleContainer.cpp @@ -37,7 +37,7 @@ PhotonParticleContainer::PushPX(WarpXParIter& pti, Cuda::ManagedDeviceVector<Real>& xp, Cuda::ManagedDeviceVector<Real>& yp, Cuda::ManagedDeviceVector<Real>& zp, - Real dt) + Real dt, DtType a_dt_type) { // This wraps the momentum and position advance so that inheritors can modify the call. @@ -76,14 +76,14 @@ PhotonParticleContainer::PushPX(WarpXParIter& pti, void PhotonParticleContainer::Evolve (int lev, - const MultiFab& Ex, const MultiFab& Ey, const MultiFab& Ez, - const MultiFab& Bx, const MultiFab& By, const MultiFab& Bz, - MultiFab& jx, MultiFab& jy, MultiFab& jz, - MultiFab* cjx, MultiFab* cjy, MultiFab* cjz, - MultiFab* rho, MultiFab* crho, - const MultiFab* cEx, const MultiFab* cEy, const MultiFab* cEz, - const MultiFab* cBx, const MultiFab* cBy, const MultiFab* cBz, - Real t, Real dt) + const MultiFab& Ex, const MultiFab& Ey, const MultiFab& Ez, + const MultiFab& Bx, const MultiFab& By, const MultiFab& Bz, + MultiFab& jx, MultiFab& jy, MultiFab& jz, + MultiFab* cjx, MultiFab* cjy, MultiFab* cjz, + MultiFab* rho, MultiFab* crho, + const MultiFab* cEx, const MultiFab* cEy, const MultiFab* cEz, + const MultiFab* cBx, const MultiFab* cBy, const MultiFab* cBz, + Real t, Real dt, DtType a_dt_type) { // This does gather, push and depose. // Push and depose have been re-written for photon, |