Skip to content

Commit

Permalink
removed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
aeriforme committed Jan 25, 2024
1 parent 150964c commit 0df7a15
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Source/Particles/PhysicalParticleContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -570,12 +570,18 @@ PhysicalParticleContainer::AddGaussianBeam (
amrex::Real vz = u.z / gamma * PhysConst::c;
amrex::Real t = (z_f - z)/vz;

<<<<<<< Updated upstream
amrex::AllPrint() << "BEFORE x = " << x << " y = " << y << std::endl;

x = x - vx * t;
y = y - vy * t;

amrex::AllPrint() << "AFTER x = " << x << " y = " << y << std::endl;
=======
x = x - vx * t;
y = y - vy * t;

>>>>>>> Stashed changes
u.x *= PhysConst::c;
u.y *= PhysConst::c;
u.z *= PhysConst::c;
Expand Down

0 comments on commit 0df7a15

Please sign in to comment.