aboutsummaryrefslogtreecommitdiff
path: root/Source/Particles/PhotonParticleContainer.H
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Particles/PhotonParticleContainer.H')
-rw-r--r--Source/Particles/PhotonParticleContainer.H26
1 files changed, 12 insertions, 14 deletions
diff --git a/Source/Particles/PhotonParticleContainer.H b/Source/Particles/PhotonParticleContainer.H
index 4cdffd385..ad89ca0a5 100644
--- a/Source/Particles/PhotonParticleContainer.H
+++ b/Source/Particles/PhotonParticleContainer.H
@@ -55,7 +55,18 @@ public:
DtType a_dt_type=DtType::Full) override;
virtual void PushPX(WarpXParIter& pti,
- amrex::Real dt, DtType a_dt_type=DtType::Full) override;
+ amrex::FArrayBox const * exfab,
+ amrex::FArrayBox const * eyfab,
+ amrex::FArrayBox const * ezfab,
+ amrex::FArrayBox const * bxfab,
+ amrex::FArrayBox const * byfab,
+ amrex::FArrayBox const * bzfab,
+ const int ngE, const int /*e_is_nodal*/,
+ const long offset,
+ const long np_to_push,
+ int lev, int gather_lev,
+ amrex::Real dt, ScaleFields scaleFields,
+ DtType a_dt_type) override;
// Do nothing
virtual void PushP (int lev,
@@ -84,19 +95,6 @@ public:
int lev,
int depos_lev,
amrex::Real dt) override {};
-
-#ifdef WARPX_QED
- /**
- * This function evolves the optical depth of the photons if QED effects
- * are enabled.
- * @param[in,out] pti particle iterator (optical depth will be modified)
- * @param[in] dt temporal step
- */
- virtual void EvolveOpticalDepth(WarpXParIter& pti,
- amrex::Real dt) override;
-
-#endif
-
};
#endif // #ifndef WARPX_PhotonParticleContainer_H_