diff options
Diffstat (limited to 'Source/Particles/PhotonParticleContainer.cpp')
-rw-r--r-- | Source/Particles/PhotonParticleContainer.cpp | 39 |
1 files changed, 27 insertions, 12 deletions
diff --git a/Source/Particles/PhotonParticleContainer.cpp b/Source/Particles/PhotonParticleContainer.cpp index 648e45319..f7c391cde 100644 --- a/Source/Particles/PhotonParticleContainer.cpp +++ b/Source/Particles/PhotonParticleContainer.cpp @@ -6,24 +6,39 @@ * License: BSD-3-Clause-LBNL */ #include "PhotonParticleContainer.H" -#include "Utils/WarpXConst.H" -#include "WarpX.H" -// Import low-level single-particle kernels -#include "Particles/Pusher/UpdatePositionPhoton.H" -#include "Particles/Pusher/GetAndSetPosition.H" -#include "Particles/Pusher/CopyParticleAttribs.H" +#ifdef WARPX_QED +# include "Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.H" +#endif #include "Particles/Gather/FieldGather.H" #include "Particles/Gather/GetExternalFields.H" +#include "Particles/PhysicalParticleContainer.H" +#include "Particles/Pusher/CopyParticleAttribs.H" +#include "Particles/Pusher/GetAndSetPosition.H" +#include "Particles/Pusher/UpdatePositionPhoton.H" +#include "Particles/WarpXParticleContainer.H" +#include "WarpX.H" -#ifdef AMREX_USE_OMP -#include <omp.h> -#endif +#include <AMReX_Array.H> +#include <AMReX_Array4.H> +#include <AMReX_BLassert.H> +#include <AMReX_Box.H> +#include <AMReX_Dim3.H> +#include <AMReX_Extension.H> +#include <AMReX_FArrayBox.H> +#include <AMReX_GpuLaunch.H> +#include <AMReX_GpuQualifiers.H> +#include <AMReX_IndexType.H> +#include <AMReX_IntVect.H> +#include <AMReX_PODVector.H> +#include <AMReX_ParmParse.H> +#include <AMReX_Particles.H> +#include <AMReX_StructOfArrays.H> -#include <limits> -#include <sstream> #include <algorithm> - +#include <array> +#include <map> +#include <memory> using namespace amrex; |