#include <decayactionsfinderdilepton.h>
A dilepton decay finder: Loops through all particles and if they can decay into dileptons, it treats the decays with the shining method.
This means in every timestep it stores every possible decay in an extra action and later in the write_dilepton_action routine in experiment.cc these decays are written in the DileptonOutput. Because too many dileptons are produced this way, every decay is weighted with the so called "shining_weight". See Schmidt:2008hm [48], chapter 2D. The finder works with two body dilepton decays as well as with dalitz dilepton decays.
Definition at line 30 of file decayactionsfinderdilepton.h.
Public Member Functions | |
DecayActionsFinderDilepton () | |
Initialize the finder. More... | |
void | shine (const Particles &search_list, OutputInterface *output, double dt) const |
Check the whole particles list and print out possible dilepton decays. More... | |
void | shine_final (const Particles &search_list, OutputInterface *output, bool only_res=false) const |
Shine dileptons from resonances at the end of the simulation. More... | |
|
inline |
void smash::DecayActionsFinderDilepton::shine | ( | const Particles & | search_list, |
OutputInterface * | output, | ||
double | dt | ||
) | const |
Check the whole particles list and print out possible dilepton decays.
[in] | search_list | List of all particles. |
[in] | output | Pointer to the dilepton output. |
[in] | dt | Length of timestep [fm] |
Definition at line 18 of file decayactionsfinderdilepton.cc.
void smash::DecayActionsFinderDilepton::shine_final | ( | const Particles & | search_list, |
OutputInterface * | output, | ||
bool | only_res = false |
||
) | const |
Shine dileptons from resonances at the end of the simulation.
This is special, because the shining time is now until the resonance would decay and not for some fixed dt interval.
[in] | search_list | List of all particles. |
[in] | output | Pointer to the dilepton output. |
[in] | only_res | optional parameter that requests that only actions regarding resonances are considered (disregarding stable particles) |
Definition at line 60 of file decayactionsfinderdilepton.cc.