Version: SMASH-3.2
fluidizationaction.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2022-2024
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 
10 #ifndef SRC_INCLUDE_SMASH_FLUIDIZATIONACTION_H_
11 #define SRC_INCLUDE_SMASH_FLUIDIZATIONACTION_H_
12 
13 #include "action.h"
14 
15 namespace smash {
16 
25 class FluidizationAction : public Action {
26  public:
34  FluidizationAction(const ParticleData &in_part, const ParticleData &out_part,
35  const double time_until)
36  : Action(in_part, out_part, time_until,
38  double get_total_weight() const override { return 0.0; };
39  double get_partial_weight() const override { return 0.0; };
40  void format_debug_output(std::ostream &out) const override {
41  out << "Fluidization of " << incoming_particles_;
42  }
43 
48  void generate_final_state() override;
49 
55  double check_conservation(const uint32_t id_process) const override;
56 };
57 
58 } // namespace smash
59 
60 #endif // SRC_INCLUDE_SMASH_FLUIDIZATIONACTION_H_
Action is the base class for a generic process that takes a number of incoming particles and transfor...
Definition: action.h:35
ParticleList incoming_particles_
List with data of incoming particles.
Definition: action.h:355
FluidizationAction is a special action indicating that a particle will be removed from the hadronic e...
void generate_final_state() override
Generate the final state of particles to be fluidized and removes them from the evolution.
FluidizationAction(const ParticleData &in_part, const ParticleData &out_part, const double time_until)
Construct action of fluidization.
double check_conservation(const uint32_t id_process) const override
Conservation laws should not be obeyed, since particles are being removed.
void format_debug_output(std::ostream &out) const override
Writes information about this action to the out stream.
double get_partial_weight() const override
Return the specific weight for the chosen outgoing channel, which is mainly used for the partial weig...
double get_total_weight() const override
Return the total weight value, which is mainly used for the weight output entry.
ParticleData contains the dynamic information of a certain particle.
Definition: particledata.h:58
Definition: action.h:24
ProcessType
ProcessTypes are used to identify the type of the process.
Definition: processbranch.h:39
@ HyperSurfaceCrossing
See here for a short description.