Skip to content
Snippets Groups Projects
Commit 473bb2c1 authored by Dominik Smith's avatar Dominik Smith
Browse files

Fixed beam angle in mcbm_transport_beam.C

x and y coordinates where switched in SetBeamAngle() call. Fixed.
parent 5e153e56
No related branches found
No related tags found
No related merge requests found
......@@ -115,7 +115,7 @@ void mcbm_transport_beam(UInt_t nEvents = 1,
run.SetVertexSmearZ(kFALSE);
run.SetBeamPosition(0., 0., beamWidthX, beamWidthY, beamStartZ);
run.SetBeamAngle(0., beamAngle, 0., 0.);
run.SetBeamAngle(beamAngle, 0., 0., 0.);
run.ForceVertexInTarget(kFALSE);
......
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