We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maximum recursion depth reached when plotting in 001_obstable.ipynb, cell 7, cell 17, cell 21.
# Plot the lost particles and the obstacle obstacle = collider.lhcb1['obstacle'] fig2 = plt.figure(2) plt.plot(lost_particles.x, lost_particles.y, '.', markersize=1) plt.plot(obstacle.x_vertices, obstacle.y_vertices, 'k')
Can be fixed with either:
plt.plot(list(obstacle.x_vertices), list(obstacle.y_vertices), 'k')
or
obs_x, obs_y = obstacle.x_vertices, obstacle.y_vertices plt.plot(obs_x, obs_y, 'k')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Maximum recursion depth reached when plotting in 001_obstable.ipynb, cell 7, cell 17, cell 21.
Can be fixed with either:
or
The text was updated successfully, but these errors were encountered: