Download this notebook here.

Create an amplitude model

Your analysis starts by defining an amplitude model that describes the reaction process you want to study. Such a model is generally very complex and requires a fair amount of effort by the analyst (you). This also gives a lot of room for mistakes.

The ‘expert system’ is responsible to give you advice on the form of an amplitude model based on the problem set you define (initial state, final state, allowed interactions, intermediate states, etc.). Internally, the system propagates the quantum numbers through the reaction graph while satisfying the specified conservation rules. How to control this procedure is explained in more detail below.

Afterwards, the amplitude model of the expert system can be exported into ComPWA or Tensorwaves. The model can for instance be used to generate a data set (toy Monte Carlo) for this reaction and to optimize its parameters to resemble an actual data set as good as possible.

1.1. Define the problem set

We first define the boundary conditions of our physics problem, such as initial state, final state, formalism type, etc. and pass all of that information to the StateTransitionManager. This is the main user interface class of the expertsystem.

[ ]:
from expertsystem.ui.system_control import (
    StateTransitionManager,
    InteractionTypes,
)
[ ]:
initial_state = [("J/psi", [-1, 1])]
final_state = [("gamma", [-1, 1]), ("pi0", [0]), ("pi0", [0])]

tbd_manager = StateTransitionManager(initial_state, final_state,
                                     formalism_type='helicity',
                                     topology_building='isobar')

Note

The StateTransitionManager (STM) is the main user interface class of the expertsystem. The boundary conditions of your physics problem, such as the initial state, final state, formalism type, etc., are defined through this interface.

  • prepare_graphs() of the STM creates all topology graphs ― here, using the isobar model (a tree of two-body decays). The function also initializes the graphs with the initial and final state and a set of conservation laws at each interaction node.

  • By default, all three interaction types (strong, EM, weak) are used in the preparation stage. However, it is also possible to choose the allowed interaction types globally via set_allowed_interaction_types().

After the preparation step, you can modify the settings returned by prepare_graphs() to your liking. Since the output of this function contains quite a lot of information, the expertsystem UI aids in the configuration (especially the STM).

  • A subset of particles that are allowed as intermediate states can also be specified: either through the STM's constructor or by setting the instance attribute allowed_intermediate_particles.

Hint

How does the StateTransitionManager know what a "J/psi" is? It simply uses a default particle list that is shipped the repository (see here) and is handled by the particle module.

1.2. Prepare topologies

Create all topology graphs using the isobar model (tree of two-body decays) and initialize the graphs with the initial and final state. Remember that each interaction node defines its own set of conservation laws.

The StateTransitionManager (STM) defines three interaction types:

Interaction

Strength

strong

\(60\)

electromagnetic (EM)

\(1\)

weak

\(10^{-4}\)

By default, all three are used in the preparation stage. The function prepare_graphs() of the STM generates graphs with all possible combinations of interaction nodes. An overall interaction strength is assigned to each graph and they are grouped according to this strength.

[ ]:
graph_interaction_settings_groups = tbd_manager.prepare_graphs()

1.3. Find solutions

If you are happy with the default settings generated by the StateTransitionManager, just start with solving directly!

Note

This step takes about 30 sec on an Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz running multi-threaded

[ ]:
solutions, violated_rules = tbd_manager.find_solutions(
    graph_interaction_settings_groups)
[ ]:
from expertsystem.topology.graph import get_intermediate_state_edges

def print_intermediate_states(solutions):
    """Just a little function to print the intermediate states."""
    print("intermediate states:")
    intermediate_states = set()
    for g in solutions:
        edge_id = get_intermediate_state_edges(g)[0]
        intermediate_states.add(g.edge_props[edge_id]['Name'])
    print(intermediate_states)

print("found", len(solutions), "solutions!")
print_intermediate_states(solutions)

Now we have a lot of solutions that are actually heavily suppressed (they involve two weak decays).

In general, you can modify the dictionary returned by prepare_graphs() directly, but the STM also comes with functionality to globally choose the allowed interaction types.

So, go ahead and disable the EM and weak interaction:

[ ]:
from expertsystem.ui.system_control import InteractionTypes

tbd_manager.set_allowed_interaction_types([InteractionTypes.Strong])
graph_interaction_settings_groups = tbd_manager.prepare_graphs()
solutions, violated_rules = tbd_manager.find_solutions(
    graph_interaction_settings_groups)

print("found", len(solutions), "solutions!")
print_intermediate_states(solutions)

Huh, what happened here? Actually, since a \(\gamma\) particle appears in one of the interaction nodes, the expert system knows that this node must involve EM interactions! Because the node can be an effective interaction, the weak interaction cannot be excluded, as it contains only a subset of conservation laws.

Since only the strong interaction was supposed to be used, this results in a warning and the STM automatically corrects the mistake.

Once the EM interaction is included, this warning disappears. Be aware, however, that the EM interaction is now available globally. Hence, there now might be solutions in which both nodes are electromagnetic.

[ ]:
tbd_manager.set_allowed_interaction_types(
    [InteractionTypes.Strong, InteractionTypes.EM])
graph_interaction_settings_groups = tbd_manager.prepare_graphs()
solutions, violated_rules = tbd_manager.find_solutions(
    graph_interaction_settings_groups)

print("found", len(solutions), "solutions!")
print_intermediate_states(solutions)

Great! Now we selected only the strongest contributions. Be aware, though, that there are more effects that can suppress certain decays, like small branching ratios. In this example, the initial state \(J/\Psi\) can decay into \(\pi^0 + \rho^0\) or \(\pi^0 + \omega\).

decay

branching ratio

\[\omega \rightarrow \gamma+\pi^0\]

0.0828

\[\rho^0 \rightarrow \gamma+\pi^0\]

0.0006

Unfortunately, the \(\rho^0\) mainly decays into \(\pi+\pi\), not \(\gamma+\pi^0\) and is therefore suppressed. This information is currently not known to the expert system, but it is possible to hand the expert system a list of allowed intermediate states.

[ ]:
# particles are found by name comparison,
# i.e. f2 will find all f2's and f all f's independent of their spin
tbd_manager.allowed_intermediate_particles = ['f']

solutions, violated_rules = tbd_manager.find_solutions(
    graph_interaction_settings_groups)

print("found " + str(len(solutions)) + " solutions!")
print_intermediate_states(solutions)

Now we have selected all amplitudes that involve f states. The warnings appear only to notify the user that the list of solutions is not exhaustive: for certain edges in the graph, no suitable particle was found (since only f states were allowed).

Now that we are satisfied with the intermediate resonances, we are all set to generate an amplitude model! In the end, we write the output to a recipe file in both XML and YAML format, you can use the format you prefer.

[ ]:
from expertsystem.amplitude.helicitydecay import \
    HelicityAmplitudeGenerator

amplitude_generator = HelicityAmplitudeGenerator()
amplitude_generator.generate(solutions)
amplitude_generator.write_to_file('model.xml')
amplitude_generator.write_to_file('model.yml')

Note

In this example, we used the helicity formalism. If you want to work with the canonical formalism, you have to:

  1. Construct a StateTransitionManager with argument formalism_type='canonical-helicity' instead of formalism_type='helicity'.

  2. Use the CanonicalAmplitudeGenerator instead of the HelicityAmplitudeGenerator.

Note that you have to do both, because otherwise the resulting amplitude will not make sense!

Have a look through the sections of the resulting XML or YAML recipe file to see what you recognize from the problem set defined above. There may also be some things you want to change in there manually, so make sure you store this recipe file carefully (e.g. track it with Git) so that you don’t overwrite it your changed after rerunning the expert system.

Now you can use this recipe file as an amplitude model in a PWA framework!