Version: SMASH-3.1
decayactionsfinderdilepton.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2014-2018,2020
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 
10 #ifndef SRC_INCLUDE_SMASH_DECAYACTIONSFINDERDILEPTON_H_
11 #define SRC_INCLUDE_SMASH_DECAYACTIONSFINDERDILEPTON_H_
12 
13 #include "outputinterface.h"
14 
15 namespace smash {
16 
31  public:
34 
42  void shine(const Particles& search_list, OutputInterface* output,
43  double dt) const;
44 
57  void shine_final(const Particles& search_list, OutputInterface* output,
58  bool only_res = false) const;
59 };
60 
61 } // namespace smash
62 
63 #endif // SRC_INCLUDE_SMASH_DECAYACTIONSFINDERDILEPTON_H_
A dilepton decay finder: Loops through all particles and if they can decay into dileptons,...
void shine(const Particles &search_list, OutputInterface *output, double dt) const
Check the whole particles list and print out possible dilepton decays.
DecayActionsFinderDilepton()
Initialize the finder.
void shine_final(const Particles &search_list, OutputInterface *output, bool only_res=false) const
Shine dileptons from resonances at the end of the simulation.
Abstraction of generic output.
The Particles class abstracts the storage and manipulation of particles.
Definition: particles.h:33
Definition: action.h:24