Version: SMASH-3.2
fluidizationaction.cc
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 
11 
12 #include "smash/logging.h"
13 #include "smash/quantumnumbers.h"
14 
15 namespace smash {
16 static constexpr int LFluidization = LogArea::HyperSurfaceCrossing::id;
17 
19  logg[LFluidization].debug("Process: Fluidization. ");
20 
21  // check that there is only 1 incoming particle
22  assert(incoming_particles_.size() == 1);
23 
24  // Return empty list because we want to remove the incoming particle
26 }
27 
28 double FluidizationAction::check_conservation(const uint32_t id_process) const {
31  if (unlikely(before == after)) {
32  throw std::runtime_error(
33  "Conservation laws obeyed during fluidization, which should not happen "
34  "as particles are removed. Particle was not properly removed in "
35  "process: " +
36  std::to_string(id_process));
37  }
38 
39  if (unlikely(outgoing_particles_.size() != 0)) {
40  throw std::runtime_error(
41  "Particle was not removed successfully in fluidization action.");
42  }
43 
44  return 0.;
45 }
46 
47 } // namespace smash
ParticleList outgoing_particles_
Initially this stores only the PDG codes of final-state particles.
Definition: action.h:363
ParticleList incoming_particles_
List with data of incoming particles.
Definition: action.h:355
void generate_final_state() override
Generate the final state of particles to be fluidized and removes them from the evolution.
double check_conservation(const uint32_t id_process) const override
Conservation laws should not be obeyed, since particles are being removed.
A container for storing conserved values.
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
#define unlikely(x)
Tell the branch predictor that this expression is likely false.
Definition: macros.h:16
Definition: action.h:24
static constexpr int LFluidization