Skip to content
Snippets Groups Projects
Commit 48825681 authored by Andre Sailer's avatar Andre Sailer
Browse files

boostInteraction: Just assign the values, don't increase them

parent 3e53ab0b
No related branches found
No related tags found
No related merge requests found
...@@ -186,9 +186,9 @@ int DD4hep::Simulation::boostInteraction(const Geant4Action* /* caller */, ...@@ -186,9 +186,9 @@ int DD4hep::Simulation::boostInteraction(const Geant4Action* /* caller */,
p->vsz = z; p->vsz = z;
p->time = t; p->time = t;
p->psx += px; p->psx = px;
p->psy += py; p->psy = py;
p->psz += pz; p->psz = pz;
} }
} }
return 1; return 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment