diff options
author | 2019-10-30 11:38:16 +0100 | |
---|---|---|
committer | 2019-10-30 11:38:16 +0100 | |
commit | fa33c9e67a23ca0cfc48a7a54fea5ec8fd0da015 (patch) | |
tree | defd736621dcfd3fd25c08482c33dfbb7fe7bf72 /Source/Particles/PhotonParticleContainer.cpp | |
parent | bcee0b627dd20248dfa524c36d24488a2e0f0347 (diff) | |
download | WarpX-fa33c9e67a23ca0cfc48a7a54fea5ec8fd0da015.tar.gz WarpX-fa33c9e67a23ca0cfc48a7a54fea5ec8fd0da015.tar.zst WarpX-fa33c9e67a23ca0cfc48a7a54fea5ec8fd0da015.zip |
refactoring to comply with new style guidelines
Diffstat (limited to 'Source/Particles/PhotonParticleContainer.cpp')
-rw-r--r-- | Source/Particles/PhotonParticleContainer.cpp | 6 |
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; |