Simplified Model Definitions

The so-called theory module contains the basic tools necessary for decomposing the input model (either in LHE or SLHA format) into simplified model topologies and using the output of the decomposition to compute the theoretical prediction for a given experimental result.

The applicability of SModelS is currently restricted to models which contain a Z2 symmetry (R-parity in SUSY, K-parity in UED, …). This is required in order to provide a clear structure for the simplified model topologies appearing during the decomposition of the input model. Below we describe the basic concepts and language used in SModelS to describe the simplified model topologies.

Elements

A simplified model topology representing a specific cascade decay of a pair of BSM states produced in the hard scattering is called an element in the SModelS language. Elements contain the Z2-even particles appearing in the cascade decay and the masses of the BSM (Z2-odd) states which have decayed or appear in the last step of the decay. Furthermore, the last BSM (Z2-odd) particle is classified according to its quantum numbers as a specific final state class: MET, HSCP, R-hadron,etc. A representation of an element is shown below:

_images/elementB.png

An element may also hold information about its corresponding weight (cross section times branching ratio times efficiency). [1] The overall properties of an element are illustrated in the scheme below:

_images/topSchemeB.png

SModelS works under the inherent assumption that, for collider purposes, all the essential properties of a BSM model can be encapsulated by its elements. Such an assumption is extremely helpful to cast the theoretical predictions of a specific BSM model in a model-independent framework, which can then be compared against the corresponding experimental limits. For instance, as shown in the scheme above, only the masses of the BSM states and the quantum number of the last BSM state are used, while other properties, such as their spins are ignored (the PID’s are, however, stored for book-keeping).

Below we describe in more detail the element properties and their implementation in SModelS.

Vertices

Each Z2-odd decay is represented by a vertex containing the outgoing states (one Z2-odd state and the Z2-even particles), as shown in the scheme above.

Z2-even Final States

Z2-even final states coming out of a vertex (see scheme above) usually correspond to Standard Model particles (electrons, gauge bosons, Higgs,…). However, if the input model contains Z2-even BSM states (such as additional Higgs bosons), these also appear as final states. In contrast, stable or long-lived Z2-odd particles which might appear in the detector (either as MET or charged tracks) are not classified as final states [2] .

  • Z2-even states are defined in smodels/share/default_particles.py

Z2-odd Intermediate States

The intermediate Z2-odd states are always assumed to consist of BSM particles with prompt Z2 conserving decays of the form: (Z2-odd state) \(\rightarrow\) (Z2-odd state’) + final states. The only information kept from the intermediate states are their masses (see scheme above).

Z2-odd Final State Class

Besides the intermediate Z2-odd BSM states, due to the assumed Z2 symmetry, the element must also contain one stable Z2-odd final state (at least in collider scales). The quantum numbers of this BSM final state are essential for defining which type of signature this element represents. In an element the Z2-odd final state quantum numbers are mapped to a final state class, as defined in the particleNames module . Some examples of final state classes are: ‘MET’, ‘HSCP’ and ‘RHadronQ’. New final state classes can also be easily defined in this module.

Branches

A branch is the basic substructure of an element. It represents a series of cascade decays of a single initial Z2-odd state. The diagram below illustrates an example of a branch.

_images/branchTopB.png

The structure of each branch is fully defined by its number of vertices and the number of final states coming out of each vertex. Furthermore, the branch also holds the information about the particle labels for the Z2-even final states coming out of each vertex, the masses of the Z2-odd states and the Z2-odd final state class (e.g. ‘MET’), as shown below.

_images/branchElB.png

Element Representation: Bracket Notation

The structure and final states of elements are represented in textual form using a nested brackets notation. The scheme below shows how to convert between the graphical and bracket representations of an element:

_images/bracketNotationB.png

The brackets are ordered and nested in the following way. The outermost brackets correspond to the branches of the element. The branches are sorted according to their size (see element sorting) and each branch contains an ordered list of vertices. Each vertex contains a list of the Z2-even final states (sorted alphabetically) coming out of the vertex. Schematically, for the example in the figure above, we have:

element = [branch1, branch2]
   branch1 = [vertex1]
      vertex1 = [l+,l-]
   branch2 = [vertex1,vertex2]
      vertex1 = [l+]
      vertex2 = [nu]

Using the above scheme it is possible to unambiguously describe each element with a simple list of nested brackets. However, in order to fully specify all the information relative to a single element, we must also include the list of masses for the Z2-odd states, the list of Z2-odd final state classes and the element weight. The masses for the BSM (Z2-odd) states can also be represented by a mass array for each branch, as shown below:

_images/massNotationB.png

Finally the Z2-odd final state classes can also be represented as a list in addition to the bracket notation:

_images/bracketNotation2.png

Topologies

It is often useful to classify elements according to their overall structure or topology. Each topology corresponds to an undressed element, removed of its Z2-even final states, Z2-odd final state class and Z2-odd masses. Therefore the topology is fully determined by its number of branches, number of vertices in each branch and number of

Z2-even final states coming out of each vertex.

An example of a topology is shown below:

_images/globTopB.png

Within SModelS, elements are grouped according to their topology. Hence topologies represent a list of elements sharing a common basic structure (same number of branches, vertices and final states in each vertex).

[1]In order to treat the UL and EM map results on the same footing, SModelS applies a trivial binary efficiency to elements for UL-type results as will be explained in detail later.
[2]In order to shorten the notation we sometimes refer to Z2-even final states simply as ‘’final states’‘. This should not be confused with the Z2-odd final state class.