aboutsummaryrefslogtreecommitdiff
path: root/Source/Particles/LaserParticleContainer.cpp
diff options
context:
space:
mode:
authorGravatar Ilian Kara-Mostefa <95044023+IlianCS@users.noreply.github.com> 2023-08-16 14:04:37 -0700
committerGravatar GitHub <noreply@github.com> 2023-08-16 14:04:37 -0700
commitb672c51c18558b6dfa7911b73613839d528cc8a2 (patch)
tree16897f4b00d93692fd112fe2f422fd2d061f2193 /Source/Particles/LaserParticleContainer.cpp
parenta51ac61cacd4e343eb69a055d938feb2a5e8e24e (diff)
downloadWarpX-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.cpp2
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));