diff options
author | 2019-09-12 08:32:31 -0700 | |
---|---|---|
committer | 2019-09-12 08:32:31 -0700 | |
commit | 35ce418dd0d9ac0ef810450978ee0985d22b2990 (patch) | |
tree | a7177d44bdfaf87d3549bdd83dd10d05b6407df3 /Source/Particles/PhotonParticleContainer.cpp | |
parent | e90fc75dee20853fd2c3fa8ed08c2cf349e3e7d4 (diff) | |
download | WarpX-35ce418dd0d9ac0ef810450978ee0985d22b2990.tar.gz WarpX-35ce418dd0d9ac0ef810450978ee0985d22b2990.tar.zst WarpX-35ce418dd0d9ac0ef810450978ee0985d22b2990.zip |
further cleaning for photon PR
Diffstat (limited to 'Source/Particles/PhotonParticleContainer.cpp')
-rw-r--r-- | Source/Particles/PhotonParticleContainer.cpp | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/Source/Particles/PhotonParticleContainer.cpp b/Source/Particles/PhotonParticleContainer.cpp index 61e602ffb..c0a159f1b 100644 --- a/Source/Particles/PhotonParticleContainer.cpp +++ b/Source/Particles/PhotonParticleContainer.cpp @@ -21,17 +21,7 @@ using namespace amrex; PhotonParticleContainer::PhotonParticleContainer (AmrCore* amr_core, int ispecies, const std::string& name) : PhysicalParticleContainer(amr_core, ispecies, name) -{ - - // This will read <species>.[...] from the inputs file - // where <species> is the name of your species - ParmParse pp(species_name); - - // read <species>.size_in_inches in the input file, and - // store it into member data. - pp.query("size_in_inches", size_in_inches); - -} +{} void PhotonParticleContainer::InitData() { @@ -100,7 +90,6 @@ PhotonParticleContainer::Evolve (int lev, // This does gather, push and depose. // Push and depose have been re-written for photon, // so they do not do anything. - // Currently, I guess photons do gather fields from the mesh. PhysicalParticleContainer::Evolve (lev, Ex, Ey, Ez, Bx, By, Bz, |