Version: SMASH-3.2
alphaclusterednucleus.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2024
3  * SMASH Team
4  *
5  * GNU General Public License (GPLv3 or later)
6  */
7 #ifndef SRC_INCLUDE_SMASH_ALPHACLUSTEREDNUCLEUS_H_
8 #define SRC_INCLUDE_SMASH_ALPHACLUSTEREDNUCLEUS_H_
9 
10 #include <map>
11 #include <vector>
12 
13 #include "angles.h"
14 #include "configuration.h"
15 #include "forwarddeclarations.h"
16 #include "input_keys.h"
17 #include "nucleus.h"
18 #include "threevector.h"
19 
20 namespace smash {
21 
29  public:
38  AlphaClusteredNucleus(Configuration &config, int n_test, bool automatic);
39 
48 
54  void scale_tetrahedron_vertex_positions(double side_length);
55 
56  private:
66  .default_value();
71  std::vector<ThreeVector> tetrahedron_vertex_positions_ = {
72  {1, 0.0, 0.0},
73  {-1.0 / 3, std::sqrt(8) / 3, 0.0},
74  {-1.0 / 3, -std::sqrt(8) / 6, std::sqrt(24) / 6},
75  {-1.0 / 3, -std::sqrt(8) / 6, -std::sqrt(24) / 6}};
76 
83 };
84 
85 } // namespace smash
86 
87 #endif // SRC_INCLUDE_SMASH_ALPHACLUSTEREDNUCLEUS_H_
Child of Nucleus for alpha clustered nuclei.
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.
default_type default_value() const
Get the default value of the key.
Definition: key.h:177
A nucleus is a collection of particles that are initialized, before the beginning of the simulation a...
Definition: nucleus.h:27
The ThreeVector class represents a physical three-vector with the components .
Definition: threevector.h:31
Definition: action.h:24
static const Key< double > modi_collider_projectile_alphaClustered_sideLength
See user guide description for more information.
Definition: input_keys.h:3589