aboutsummaryrefslogtreecommitdiff
path: root/Source/Particles/PhotonParticleContainer.cpp
diff options
context:
space:
mode:
authorGravatar MaxThevenet <mthevenet@lbl.gov> 2019-10-31 09:36:59 -0700
committerGravatar GitHub <noreply@github.com> 2019-10-31 09:36:59 -0700
commit7cf08f6e336457b4a48874985712087faa984b64 (patch)
tree2e2569aefdaed400b9d6cf9e42ea2ab9cbcf9565 /Source/Particles/PhotonParticleContainer.cpp
parent5280c22a64ecbfd1cabff70f75a1d189ac7c5387 (diff)
parentf19c45608a62dfd4cd196d402ddab49bc4df06ee (diff)
downloadWarpX-7cf08f6e336457b4a48874985712087faa984b64.tar.gz
WarpX-7cf08f6e336457b4a48874985712087faa984b64.tar.zst
WarpX-7cf08f6e336457b4a48874985712087faa984b64.zip
Merge pull request #478 from lucafedeli88/qed_bw_qs_factory_class
Factory class for Breit Wheeler and Synchrotron engines
Diffstat (limited to 'Source/Particles/PhotonParticleContainer.cpp')
-rw-r--r--Source/Particles/PhotonParticleContainer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Particles/PhotonParticleContainer.cpp b/Source/Particles/PhotonParticleContainer.cpp
index 612da01ca..7e52b52e1 100644
--- a/Source/Particles/PhotonParticleContainer.cpp
+++ b/Source/Particles/PhotonParticleContainer.cpp
@@ -26,9 +26,9 @@ PhotonParticleContainer::PhotonParticleContainer (AmrCore* amr_core, int ispecie
ParmParse pp(species_name);
#ifdef WARPX_QED
- //IF do_qed is enabled, find out if Breit Wheeler process is enabled
- if(do_qed)
- pp.query("do_qed_breit_wheeler", do_qed_breit_wheeler);
+ //IF m_do_qed is enabled, find out if Breit Wheeler process is enabled
+ if(m_do_qed)
+ pp.query("do_qed_breit_wheeler", m_do_qed_breit_wheeler);
//Check for processes which do not make sense for photons
bool test_quantum_sync = false;