diff options
author | 2023-08-16 14:04:37 -0700 | |
---|---|---|
committer | 2023-08-16 14:04:37 -0700 | |
commit | b672c51c18558b6dfa7911b73613839d528cc8a2 (patch) | |
tree | 16897f4b00d93692fd112fe2f422fd2d061f2193 /Source/Particles/LaserParticleContainer.cpp | |
parent | a51ac61cacd4e343eb69a055d938feb2a5e8e24e (diff) | |
download | WarpX-b672c51c18558b6dfa7911b73613839d528cc8a2.tar.gz WarpX-b672c51c18558b6dfa7911b73613839d528cc8a2.tar.zst WarpX-b672c51c18558b6dfa7911b73613839d528cc8a2.zip |
fix time update (#4184)
Diffstat (limited to 'Source/Particles/LaserParticleContainer.cpp')
-rw-r--r-- | Source/Particles/LaserParticleContainer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Particles/LaserParticleContainer.cpp b/Source/Particles/LaserParticleContainer.cpp index f451634f8..ff11d1a30 100644 --- a/Source/Particles/LaserParticleContainer.cpp +++ b/Source/Particles/LaserParticleContainer.cpp @@ -576,7 +576,7 @@ LaserParticleContainer::Evolve (int lev, } // Update laser profile - m_up_laser_profile->update(t); + m_up_laser_profile->update(t_lab); BL_ASSERT(OnSameGrids(lev,jx)); |