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
final_state
With QRules v0.9.7:
pip install qrules==0.9.7
import graphviz import qrules # v0.9.7 result = qrules.generate_transitions( initial_state=("J/psi(1S)", [-1, +1]), final_state=["Sigma+", "K0", "p~"], allowed_intermediate_particles=["N(1440)"], allowed_interaction_types="strong", ) dot = qrules.io.asdot(result, collapse_graphs=True) graphviz.Source(dot)
With QRules v0.8.2:
pip install qrules==0.8.2
import graphviz import qrules result = qrules.generate_transitions( initial_state=("J/psi(1S)", [-1, +1]), final_state=["p~", "Sigma+", "K0"], allowed_intermediate_particles=["N(1440)"], allowed_interaction_types="strong", ) dot = qrules.io.asdot(result, collapse_graphs=True) graphviz.Source(dot)
The text was updated successfully, but these errors were encountered:
redeboer
Successfully merging a pull request may close this issue.
With QRules v0.9.7:
With QRules v0.8.2:
The text was updated successfully, but these errors were encountered: