diff options
author | 2019-09-03 11:35:55 -0700 | |
---|---|---|
committer | 2019-09-03 11:35:55 -0700 | |
commit | f6d3b9fd84d2c131c50e89f1e957ecc6d7960b20 (patch) | |
tree | d2ba8add81837a43c1c511eccdc3caf52b361a4b /Source/Laser/LaserParticleContainer.cpp | |
parent | a3973f060b6e3c26dd04eea00315bc00a94e3725 (diff) | |
parent | daeebcf054e98b0e719d21c1df2b98238b1d481c (diff) | |
download | WarpX-f6d3b9fd84d2c131c50e89f1e957ecc6d7960b20.tar.gz WarpX-f6d3b9fd84d2c131c50e89f1e957ecc6d7960b20.tar.zst WarpX-f6d3b9fd84d2c131c50e89f1e957ecc6d7960b20.zip |
Merge branch 'dev' into RZgeometry
Diffstat (limited to 'Source/Laser/LaserParticleContainer.cpp')
-rw-r--r-- | Source/Laser/LaserParticleContainer.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Laser/LaserParticleContainer.cpp b/Source/Laser/LaserParticleContainer.cpp index c141ae4b0..3fdd8730b 100644 --- a/Source/Laser/LaserParticleContainer.cpp +++ b/Source/Laser/LaserParticleContainer.cpp @@ -397,8 +397,8 @@ LaserParticleContainer::Evolve (int lev, { BL_PROFILE("Laser::Evolve()"); BL_PROFILE_VAR_NS("Laser::Evolve::Copy", blp_copy); - BL_PROFILE_VAR_NS("PICSAR::LaserParticlePush", blp_pxr_pp); - BL_PROFILE_VAR_NS("PICSAR::LaserCurrentDepo", blp_pxr_cd); + BL_PROFILE_VAR_NS("Laser::ParticlePush", blp_pp); + BL_PROFILE_VAR_NS("Laser::CurrentDepo", blp_cd); BL_PROFILE_VAR_NS("Laser::Evolve::Accumulate", blp_accumulate); Real t_lab = t; @@ -466,7 +466,7 @@ LaserParticleContainer::Evolve (int lev, // // Particle Push // - BL_PROFILE_VAR_START(blp_pxr_pp); + BL_PROFILE_VAR_START(blp_pp); // Find the coordinates of the particles in the emission plane calculate_laser_plane_coordinates( &np, m_xp[thread_num].dataPtr(), @@ -506,7 +506,7 @@ LaserParticleContainer::Evolve (int lev, wp.dataPtr(), amplitude_E.dataPtr(), &p_X[0], &p_X[1], &p_X[2], &nvec[0], &nvec[1], &nvec[2], &mobility, &dt, &PhysConst::c, &WarpX::beta_boost, &WarpX::gamma_boost ); - BL_PROFILE_VAR_STOP(blp_pxr_pp); + BL_PROFILE_VAR_STOP(blp_pp); // // Current Deposition |