27 if (A == 16 && Z == 8) {
32 throw std::domain_error(
33 "Alpha-clustering is only implemented for oxygen nuclei. Please, check "
34 "the 'Alpha_Clustered' section in your input file.");
44 const auto &side_length_key = [&is_projectile]() {
54 const auto &orientation_section = [&is_projectile]() {
78 position = position / position.abs() * std::sqrt(6) / 4 * side_length;
AlphaClusteredNucleus(Configuration &config, int n_test, bool automatic)
Constructor which takes a configuration and the number of test particles.
int tetrahedron_vertex_index_
An index to iterate through the vertices of the tetrahedron.
void scale_tetrahedron_vertex_positions(double side_length)
Scales the tetrahedron vertex positions to have the specified side length.
double tetrahedron_side_length_
Side length of the tetrahedron used for alpha-clustering.
std::vector< ThreeVector > tetrahedron_vertex_positions_
Positions of the vertices of the regular tetrahedron with center at (0,0,0) used for alpha-clustering...
ThreeVector distribute_nucleon() override
Alpha-clustering sampling routine.
Interface to the SMASH configuration files.
bool has_section(const KeyLabels &labels) const
Return whether there is a (possibly empty) section with the given labels.
Configuration extract_complete_sub_configuration(KeyLabels section, Configuration::GetEmpty empty_if_not_existing=Configuration::GetEmpty::No)
Alternative method to extract a sub-configuration, which retains the labels from the top-level in the...
T take(const Key< T > &key)
The default interface for SMASH to read configuration values.
A nucleus is a collection of particles that are initialized, before the beginning of the simulation a...
void set_nuclear_radius(double rad)
Sets the nuclear radius.
void set_diffusiveness(double diffuse)
Sets the diffusiveness of the nucleus.
size_t number_of_protons() const
Number of physical protons in the nucleus:
virtual ThreeVector distribute_nucleon()
The distribution of return values from this function is according to a spherically symmetric Woods-Sa...
size_t number_of_particles() const
Number of physical particles in the nucleus:
void set_orientation_from_config(Configuration &orientation_config)
Set angles for rotation of the nucleus from config file.
The ThreeVector class represents a physical three-vector with the components .
Collection of useful constants that are known at compile time.
bool has_projectile_or_target(const Configuration &config)
Find out whether a configuration has a projectile or a target sub-section.
bool is_about_projectile(const Configuration &config)
Find out whether a configuration is about projectile or target.
Generic numerical functions.