Version: SMASH-3.2
smash::Configuration::Value Class Reference

Proxy object to be used when taking or reading keys in the configuration.

This type automatically converts to the target type e.g. on assignment. An object of this type is returned by the private take and read methods and it is constructed from the YAML::Node to be taken or read.

This class is an implementation detail of Configuration and can be ignored by users of Configuration.

Definition at line 803 of file configuration.h.

Public Member Functions

 Value (const Value &)=delete
 If you want to copy this you're doing it wrong. More...
 
Valueoperator= (const Value &)=delete
 If you want to copy this you're doing it wrong. More...
 
template<typename T >
 operator T () const
 This function determines the type it is assigned to and calls YAML::Node::as<T>() with this type. More...
 
template<typename T >
 operator std::vector< T > () const
 Check conversion exceptions. More...
 
template<typename T , size_t N>
 operator std::array< T, N > () const
 Cast array of keys to a std::array of length N. More...
 
 operator ReactionsBitSet () const
 Set ReactionBitSet from configuration values. More...
 
 operator MultiParticleReactionsBitSet () const
 Set MultiParticleReactionsBitSet from configuration values. More...
 
 operator std::set< ThermodynamicQuantity > () const
 Set thermodynamic quantity from configuration values. More...
 
 operator CalculationFrame () const
 Set calculation frame from configuration values. More...
 
 operator FermiMotion () const
 (De-)Activate Fermi motion from configuration values. More...
 
 operator DensityType () const
 Set density type from configuration values. More...
 
 operator ExpansionMode () const
 Set expansion mode from configuration values. More...
 
 operator DerivativesMode () const
 Set DerivativesMode. More...
 
 operator FieldDerivativesMode () const
 Set FieldDerivatives mode. More...
 
 operator SmearingMode () const
 Set SmearingMode. More...
 
 operator TimeStepMode () const
 Set time step mode from configuration values. More...
 
 operator BoxInitialCondition () const
 Set initial condition for box setup from configuration values. More...
 
 operator SphereInitialCondition () const
 Set initial condition for sphere setup from configuration values. More...
 
 operator NNbarTreatment () const
 Set treatment of N-Nbar reactions from configuration values. More...
 
 operator Sampling () const
 Set cross-section sampling method from configuration values. More...
 
 operator ThermalizationAlgorithm () const
 Set algorithm for forced thermalization from configuration values. More...
 
 operator CollisionCriterion () const
 Set collision criterion from configuration values. More...
 
 operator TotalCrossSectionStrategy () const
 Set total cross section strategy from configuration values. More...
 
 operator PseudoResonance () const
 Set how pseudo-resonances are used from configuration values. More...
 
 operator FluidizationType () const
 Set condition of fluidization for hydrodynamic initial conditions. More...
 
 operator OutputOnlyFinal () const
 Set OutputOnlyFinal for particles output from configuration values. More...
 
 operator FluidizableProcessesBitSet () const
 Set FluidizableProcessesBitSet from configuration values. More...
 

Private Member Functions

 Value (const YAML::Node &n, const char *key)
 Construct the Value wrapper from a YAML::Node. More...
 

Private Attributes

const YAML::Node node_
 a YAML leaf node More...
 
const char *const key_
 The key to be interpreted. More...
 

Friends

class Configuration
 

Constructor & Destructor Documentation

◆ Value() [1/2]

smash::Configuration::Value::Value ( const YAML::Node &  n,
const char *  key 
)
inlineprivate

Construct the Value wrapper from a YAML::Node.

Note
This constructor must be implicit, otherwise it's impossible to return an rvalue Value object - because the copy constructor is deleted.

Definition at line 817 of file configuration.h.

817  : node_(n), key_(key) {
818  if (!(n.IsScalar() || n.IsSequence() || n.IsMap())) {
819  std::stringstream err;
820  err << "Configuration value for \"" << key
821  << "\" is missing or invalid";
822  throw std::runtime_error(err.str());
823  }
824  }
const char *const key_
The key to be interpreted.
const YAML::Node node_
a YAML leaf node
constexpr int n
Neutron.

◆ Value() [2/2]

smash::Configuration::Value::Value ( const Value )
delete

If you want to copy this you're doing it wrong.

Member Function Documentation

◆ operator=()

Value& smash::Configuration::Value::operator= ( const Value )
delete

If you want to copy this you're doing it wrong.

◆ operator T()

template<typename T >
smash::Configuration::Value::operator T ( ) const
inline

This function determines the type it is assigned to and calls YAML::Node::as<T>() with this type.

This makes reading values more convenient than calling as<type>() explicitly.

Exceptions
IncorrectTypeInAssignment

Definition at line 841 of file configuration.h.

841  {
842  try {
843  return node_.as<T>();
844  } catch (YAML::TypedBadConversion<T> &e) {
845  throw IncorrectTypeInAssignment(
846  "The value for key \"" + std::string(key_) +
847  "\" cannot be converted to the requested type.");
848  }
849  }

◆ operator std::vector< T >()

template<typename T >
smash::Configuration::Value::operator std::vector< T > ( ) const
inline

Check conversion exceptions.

Exceptions
IncorrectTypeInAssignmentin case type conversion failed.

Definition at line 857 of file configuration.h.

857  {
858  try {
859  return node_.as<std::vector<T>>();
860  } catch (YAML::TypedBadConversion<T> &e) {
861  throw IncorrectTypeInAssignment(
862  "One of the values in the sequence for key \"" + std::string(key_) +
863  "\" failed to convert to the requested type. E.g. [1 2] is a "
864  "sequence of one string \"1 2\" and [1, 2] is a sequence of two "
865  "integers. Often there is just a comma missing in the config "
866  "file.");
867  } catch (YAML::TypedBadConversion<std::vector<T>> &e) {
868  throw IncorrectTypeInAssignment(
869  "The value for key \"" + std::string(key_) +
870  "\" cannot be converted to the requested type. A sequence was "
871  "expected but apparently not found.");
872  }
873  }

◆ operator std::array< T, N >()

template<typename T , size_t N>
smash::Configuration::Value::operator std::array< T, N > ( ) const
inline

Cast array of keys to a std::array of length N.

Returns
Array of std::array type.
Exceptions
IncorrectTypeInAssignmentin case the number of keys does not match the length of the newly generated array.

Definition at line 883 of file configuration.h.

883  {
884  const std::vector<T> vec = operator std::vector<T>();
885  const size_t n_read = vec.size();
886  // Alert if size does not match
887  if (n_read != N) {
888  throw IncorrectTypeInAssignment("Wrong number of values in array \"" +
889  std::string(key_) + "\". Expected " +
890  std::to_string(N) +
891  " values,"
892  " found " +
893  std::to_string(n_read) + ".");
894  }
895  std::array<T, N> arr;
896  std::copy_n(vec.begin(), N, arr.begin());
897  return arr;
898  }

◆ operator ReactionsBitSet()

smash::Configuration::Value::operator ReactionsBitSet ( ) const
inline

Set ReactionBitSet from configuration values.

Returns
ReactionBitSet with all included reaction types.
Exceptions
IncorrectTypeInAssignmentin case a reaction type that is not available is provided as a configuration value.

Definition at line 907 of file configuration.h.

907  {
908  const std::vector<std::string> v = operator std::vector<std::string>();
909  ReactionsBitSet s;
910  for (const auto &x : v) {
911  if (x == "All") {
912  s.set();
913  break;
914  } else if (x == "Elastic") {
916  } else if (x == "NN_to_NR") {
918  } else if (x == "NN_to_DR") {
920  } else if (x == "KN_to_KN") {
922  } else if (x == "KN_to_KDelta") {
924  } else if (x == "Strangeness_exchange") {
926  } else if (x == "NNbar") {
928  } else if (x == "PiDeuteron_to_NN") {
930  } else if (x == "PiDeuteron_to_pidprime") {
932  } else if (x == "NDeuteron_to_Ndprime") {
934  } else {
935  throw IncorrectTypeInAssignment(
936  "The value for key \"" + std::string(key_) +
937  "\" should be \"All\", \"Elastic\", \"NN_to_NR\", \"NN_to_DR\","
938  "\"KN_to_KN\", \"KN_to_KDelta\", \"PiDeuteron_to_NN\", "
939  "\"PiDeuteron_to_pidprime\", \"NDeuteron_to_Ndprime\", "
940  "\"Strangeness_exchange\" or "
941  "\"NNbar\", or any combination of these.");
942  }
943  }
944  return s;
945  }
std::bitset< 10 > ReactionsBitSet
Container for the 2 to 2 reactions in the code.
@ KN_to_KDelta
@ KN_to_KN
@ NN_to_NR
@ PiDeuteron_to_pidprime
@ NDeuteron_to_Ndprime
@ Strangeness_exchange
@ PiDeuteron_to_NN
@ NN_to_DR

◆ operator MultiParticleReactionsBitSet()

smash::Configuration::Value::operator MultiParticleReactionsBitSet ( ) const
inline

Set MultiParticleReactionsBitSet from configuration values.

Returns
MultiParticleReactionsBitSet with all included reaction types.
Exceptions
IncorrectTypeInAssignmentin case a reaction type that is not available is provided as a configuration value.

Definition at line 954 of file configuration.h.

954  {
955  const std::vector<std::string> v = operator std::vector<std::string>();
957  for (const auto &x : v) {
958  if (x == "All") {
959  s.set();
960  break;
961  } else if (x == "Meson_3to1") {
963  } else if (x == "Deuteron_3to2") {
965  } else if (x == "NNbar_5to2") {
967  } else if (x == "A3_Nuclei_4to2") {
969  } else {
970  throw IncorrectTypeInAssignment(
971  "The value for key \"" + std::string(key_) +
972  "\" should be \"All\", \"Meson_3to1\", "
973  "\"Deuteron_3to2\" or \"NNbar_5to2\", "
974  "\"A3_Nuclei_4to2\", or any combination of "
975  "these.");
976  }
977  }
978  return s;
979  }
std::bitset< 4 > MultiParticleReactionsBitSet
Container for the n to m reactions in the code.
@ NNbar_5to2
@ A3_Nuclei_4to2
@ Deuteron_3to2
@ Meson_3to1

◆ operator std::set< ThermodynamicQuantity >()

smash::Configuration::Value::operator std::set< ThermodynamicQuantity > ( ) const
inline

Set thermodynamic quantity from configuration values.

Returns
Set of thermodynamic quantity.
Exceptions
IncorrectTypeInAssignmentin case a thermodynamic quantity that is not available is provided as a configuration value.

Definition at line 988 of file configuration.h.

988  {
989  const std::vector<std::string> v = operator std::vector<std::string>();
990  std::set<ThermodynamicQuantity> s;
991  for (const auto &x : v) {
992  if (x == "rho_eckart") {
994  } else if (x == "tmn") {
995  s.insert(ThermodynamicQuantity::Tmn);
996  } else if (x == "tmn_landau") {
998  } else if (x == "landau_velocity") {
1000  } else if (x == "j_QBS") {
1001  s.insert(ThermodynamicQuantity::j_QBS);
1002  } else {
1003  throw IncorrectTypeInAssignment(
1004  "The value for key \"" + std::string(key_) +
1005  "\" should be \"rho_eckart\", \"tmn\""
1006  ", \"tmn_landau\", \"landau_velocity\" or \"j_QBS\".");
1007  }
1008  }
1009  return s;
1010  }
@ EckartDensity
Density in the Eckart frame.
@ Tmn
Energy-momentum tensor in lab frame.
@ LandauVelocity
Velocity of the Landau rest frame.
@ j_QBS
Electric (Q), baryonic (B) and strange (S) currents.
@ TmnLandau
Energy-momentum tensor in Landau rest frame.

◆ operator CalculationFrame()

smash::Configuration::Value::operator CalculationFrame ( ) const
inline

Set calculation frame from configuration values.

Returns
string of calculation frame.
Exceptions
IncorrectTypeInAssignmentin case a calculation frame that is not available is provided as a configuration value.

Definition at line 1019 of file configuration.h.

1019  {
1020  const std::string s = operator std::string();
1021  if (s == "center of velocity") {
1023  }
1024  if (s == "center of mass") {
1026  }
1027  if (s == "fixed target") {
1029  }
1030  throw IncorrectTypeInAssignment(
1031  "The value for key \"" + std::string(key_) +
1032  "\" should be \"center of velocity\" or \"center of mass\" "
1033  "or \"fixed target\".");
1034  }

◆ operator FermiMotion()

smash::Configuration::Value::operator FermiMotion ( ) const
inline

(De-)Activate Fermi motion from configuration values.

Returns
Fermi motion setup.
Exceptions
IncorrectTypeInAssignmentin case a Fermi motion value that is not available is provided as a configuration value.

Definition at line 1043 of file configuration.h.

1043  {
1044  const std::string s = operator std::string();
1045  if (s == "off") {
1046  return FermiMotion::Off;
1047  }
1048  if (s == "on") {
1049  return FermiMotion::On;
1050  }
1051  if (s == "frozen") {
1052  return FermiMotion::Frozen;
1053  }
1054  throw IncorrectTypeInAssignment(
1055  "The value for key \"" + std::string(key_) +
1056  "\" should be \"off\" or \"on\" or \"frozen\".");
1057  }
@ On
Use fermi motion in combination with potentials.
@ Frozen
Use fermi motion without potentials.
@ Off
Don't use fermi motion.

◆ operator DensityType()

smash::Configuration::Value::operator DensityType ( ) const
inline

Set density type from configuration values.

Returns
Density type.
Exceptions
IncorrectTypeInAssignmentin case a density type that is not available is provided as a configuration value.

Definition at line 1066 of file configuration.h.

1066  {
1067  const std::string s = operator std::string();
1068  if (s == "hadron") {
1069  return DensityType::Hadron;
1070  }
1071  if (s == "baryon") {
1072  return DensityType::Baryon;
1073  }
1074  if (s == "baryonic isospin") {
1076  }
1077  if (s == "pion") {
1078  return DensityType::Pion;
1079  }
1080  if (s == "total isospin") {
1082  }
1083  if (s == "none") {
1084  return DensityType::None;
1085  }
1086  throw IncorrectTypeInAssignment("The value for key \"" +
1087  std::string(key_) +
1088  "\" should be \"hadron\" or \"baryon\" "
1089  "or \"baryonic isospin\" or \"pion\" "
1090  "or \"none\".");
1091  }

◆ operator ExpansionMode()

smash::Configuration::Value::operator ExpansionMode ( ) const
inline

Set expansion mode from configuration values.

Returns
Expansion mode.
Exceptions
IncorrectTypeInAssignmentin case an expansion mode that is not available is provided as a configuration value.

Definition at line 1100 of file configuration.h.

1100  {
1101  const std::string s = operator std::string();
1102  if (s == "NoExpansion") {
1104  }
1105  if (s == "MasslessFRW") {
1107  }
1108  if (s == "MassiveFRW") {
1110  }
1111  if (s == "Exponential") {
1113  }
1114  throw IncorrectTypeInAssignment(
1115  "The value for key \"" + std::string(key_) +
1116  "\" should be \"NoExpansion\", \"MasslessFRW\"," +
1117  "\"MassiveFRW\" or \"Exponential\".");
1118  }

◆ operator DerivativesMode()

smash::Configuration::Value::operator DerivativesMode ( ) const
inline

Set DerivativesMode.

Definition at line 1123 of file configuration.h.

1123  {
1124  const std::string s = operator std::string();
1125  if (s == "Covariant Gaussian") {
1127  }
1128  if (s == "Finite difference") {
1130  }
1131  if (s == "Off") {
1132  return DerivativesMode::Off;
1133  }
1134  throw IncorrectTypeInAssignment(
1135  "The value for key \"" + std::string(key_) +
1136  "\" should be \"Covariant Gaussian\", \"Finite difference\"," +
1137  " or \"Off\".");
1138  }

◆ operator FieldDerivativesMode()

smash::Configuration::Value::operator FieldDerivativesMode ( ) const
inline

Set FieldDerivatives mode.

Definition at line 1143 of file configuration.h.

1143  {
1144  const std::string s = operator std::string();
1145  if (s == "Chain Rule") {
1147  }
1148  if (s == "Direct") {
1150  }
1151  throw IncorrectTypeInAssignment(
1152  "The value for key \"" + std::string(key_) +
1153  "\" should be \"Chain Rule\" or \"Direct\".");
1154  }

◆ operator SmearingMode()

smash::Configuration::Value::operator SmearingMode ( ) const
inline

Set SmearingMode.

Definition at line 1159 of file configuration.h.

1159  {
1160  const std::string s = operator std::string();
1161  if (s == "Covariant Gaussian") {
1163  }
1164  if (s == "Discrete") {
1165  return SmearingMode::Discrete;
1166  }
1167  if (s == "Triangular") {
1168  return SmearingMode::Triangular;
1169  }
1170  throw IncorrectTypeInAssignment(
1171  "The value for key \"" + std::string(key_) +
1172  "\" should be \"Covariant Gaussian\", \"Discrete\"," +
1173  " or \"Triangular\".");
1174  }

◆ operator TimeStepMode()

smash::Configuration::Value::operator TimeStepMode ( ) const
inline

Set time step mode from configuration values.

Returns
time step mode.
Exceptions
IncorrectTypeInAssignmentin case a time step mode that is not available is provided as a configuration value.

Definition at line 1183 of file configuration.h.

1183  {
1184  const std::string s = operator std::string();
1185  if (s == "None") {
1186  return TimeStepMode::None;
1187  }
1188  if (s == "Fixed") {
1189  return TimeStepMode::Fixed;
1190  }
1191  throw IncorrectTypeInAssignment("The value for key \"" +
1192  std::string(key_) +
1193  "\" should be \"None\" or \"Fixed\".");
1194  }
@ Fixed
Use fixed time step.
@ None
Don't use time steps; propagate from action to action.

◆ operator BoxInitialCondition()

smash::Configuration::Value::operator BoxInitialCondition ( ) const
inline

Set initial condition for box setup from configuration values.

Returns
Initial condition for box setup.
Exceptions
IncorrectTypeInAssignmentin case an initial conditions that is not available is provided as a configuration value.

Definition at line 1203 of file configuration.h.

1203  {
1204  const std::string s = operator std::string();
1205  if (s == "thermal momenta") {
1207  }
1208  if (s == "thermal momenta quantum") {
1210  }
1211  if (s == "peaked momenta") {
1213  }
1214  throw IncorrectTypeInAssignment(
1215  "The value for key \"" + std::string(key_) +
1216  "\" should be \"thermal momenta\", \"thermal momenta quantum\", " +
1217  "or \"peaked momenta\".");
1218  }
@ ThermalMomentaBoltzmann
A thermalized ensemble is generated, with momenta sampled from a Maxwell-Boltzmann distribution.
@ ThermalMomentaQuantum
A thermalized ensemble is generated, with momenta of baryons(mesons) sampled from a Fermi(Bose) distr...
@ PeakedMomenta
All particles have the same momentum with T being the temperature.

◆ operator SphereInitialCondition()

smash::Configuration::Value::operator SphereInitialCondition ( ) const
inline

Set initial condition for sphere setup from configuration values.

Returns
Initial condition for sphere setup.
Exceptions
IncorrectTypeInAssignmentin case an initial conditions that is not available is provided as a configuration value.

Definition at line 1227 of file configuration.h.

1227  {
1228  const std::string s = operator std::string();
1229  if (s == "thermal momenta") {
1231  }
1232  if (s == "thermal momenta quantum") {
1234  }
1235  if (s == "IC_ES") {
1237  }
1238  if (s == "IC_1M") {
1240  }
1241  if (s == "IC_2M") {
1243  }
1244  if (s == "IC_Massive") {
1246  }
1247  throw IncorrectTypeInAssignment(
1248  "The value for key \"" + std::string(key_) +
1249  "\" should be \"thermal momenta\", \"thermal momenta quantum\", " +
1250  "\"IC_ES\", \"IC_1M\", \"IC_2M\" or" + "\"IC_Massive\".");
1251  }
@ ThermalMomentaBoltzmann
A thermalized ensemble is generated, with momenta sampled from a Maxwell-Boltzmann distribution.
@ IC_ES
Off-equilibrium distribution used in massless comparisons of SMASH to the extended universe metric.
@ ThermalMomentaQuantum
A thermalized ensemble is generated, with momenta of baryons(mesons) sampled from a Fermi(Bose) distr...
@ IC_Massive
A generalization of IC_ES for the non-zero mass case; note that there is currently no analytical comp...
@ IC_2M
Off-equilibrium distribution used in massless comparisons of SMASH to the extended universe metric.
@ IC_1M
Off-equilibrium distribution used in massless comparisons of SMASH to the extended universe metric.

◆ operator NNbarTreatment()

smash::Configuration::Value::operator NNbarTreatment ( ) const
inline

Set treatment of N-Nbar reactions from configuration values.

Returns
N-Nbar treatment.
Exceptions
IncorrectTypeInAssignmentin case an N-Nbar treatment that is not available is provided as a configuration value.

Definition at line 1260 of file configuration.h.

1260  {
1261  const std::string s = operator std::string();
1262  if (s == "no annihilation") {
1264  }
1265  if (s == "resonances") {
1267  }
1268  if (s == "two to five") {
1270  }
1271  if (s == "strings") {
1272  return NNbarTreatment::Strings;
1273  }
1274  throw IncorrectTypeInAssignment(
1275  "The value for key \"" + std::string(key_) + "\" should be " +
1276  "\"no annihilation\", \"resonances\", \"two to five\" or " +
1277  " \"strings\".");
1278  }
@ NoAnnihilation
No Annihilation.
@ TwoToFive
Directly create 5 pions, use with multi-particle reactions.
@ Resonances
Use intermediate Resonances.
@ Strings
Use string fragmentation.

◆ operator Sampling()

smash::Configuration::Value::operator Sampling ( ) const
inline

Set cross-section sampling method from configuration values.

Returns
Sampling method of cross-section.
Exceptions
IncorrectTypeInAssignmentin case a sampling method that is not available is provided as a configuration value.

Definition at line 1287 of file configuration.h.

1287  {
1288  const std::string s = operator std::string();
1289  if (s == "quadratic") {
1290  return Sampling::Quadratic;
1291  }
1292  if (s == "custom") {
1293  return Sampling::Custom;
1294  }
1295  if (s == "uniform") {
1296  return Sampling::Uniform;
1297  }
1298  throw IncorrectTypeInAssignment(
1299  "The value for key \"" + std::string(key_) +
1300  "\" should be \"quadratic\", \"uniform\" or \"custom\".");
1301  }
@ Quadratic
Sample from areal / quadratic distribution.
@ Custom
Sample from custom, user-defined distribution.
@ Uniform
Sample from uniform distribution.

◆ operator ThermalizationAlgorithm()

smash::Configuration::Value::operator ThermalizationAlgorithm ( ) const
inline

Set algorithm for forced thermalization from configuration values.

Returns
Algorithm for forced thermalization.
Exceptions
IncorrectTypeInAssignmentin case a thermalization algorithm that is not available is provided as a configuration value.

Definition at line 1310 of file configuration.h.

1310  {
1311  const std::string s = operator std::string();
1312  if (s == "mode sampling") {
1314  }
1315  if (s == "biased BF") {
1317  }
1318  if (s == "unbiased BF") {
1320  }
1321  throw IncorrectTypeInAssignment(
1322  "The value for key \"" + std::string(key_) +
1323  "\" should be \"mode sampling\", \"biased BF\" or \"unbiased BF\".");
1324  }

◆ operator CollisionCriterion()

smash::Configuration::Value::operator CollisionCriterion ( ) const
inline

Set collision criterion from configuration values.

Returns
CollisionCriterion.
Exceptions
IncorrectTypeInAssignmentin case an collision criterion that is not available is provided as a configuration value.

Definition at line 1333 of file configuration.h.

1333  {
1334  const std::string s = operator std::string();
1335  if (s == "Geometric") {
1337  }
1338  if (s == "Stochastic") {
1340  }
1341  if (s == "Covariant") {
1343  }
1344  throw IncorrectTypeInAssignment(
1345  "The value for key \"" + std::string(key_) + "\" should be " +
1346  "\"Geometric\", \"Stochastic\" " + "or \"Covariant\".");
1347  }
@ Stochastic
Stochastic Criteiron.
@ Geometric
Geometric criterion.
@ Covariant
Covariant Criterion.

◆ operator TotalCrossSectionStrategy()

smash::Configuration::Value::operator TotalCrossSectionStrategy ( ) const
inline

Set total cross section strategy from configuration values.

Returns
TotalCrossSectionStrategy.
Exceptions
IncorrectTypeInAssignmentin case a strategy that is not available is provided as a configuration value.

Definition at line 1356 of file configuration.h.

1356  {
1357  const std::string s = operator std::string();
1358  if (s == "BottomUp") {
1360  }
1361  if (s == "TopDown") {
1363  }
1364  if (s == "TopDownMeasured") {
1366  }
1367  throw IncorrectTypeInAssignment(
1368  "The value for key \"" + std::string(key_) + "\" should be " +
1369  "\"BottomUp\", \"TopDown\" " + "or \"TopDownMeasured\".");
1370  }
@ TopDownMeasured
Mix the two above, using the parametrizations only for measured processes, and summing up partials fo...
@ TopDown
Use parametrizations based on existing data, rescaling with AQM for unmeasured processes.
@ BottomUp
Sum the existing partial contributions.

◆ operator PseudoResonance()

smash::Configuration::Value::operator PseudoResonance ( ) const
inline

Set how pseudo-resonances are used from configuration values.

Returns
PseudoResonance.
Exceptions
IncorrectTypeInAssignmentin case a key that is not available is provided as a configuration value.

Definition at line 1379 of file configuration.h.

1379  {
1380  const std::string s = operator std::string();
1381  if (s == "None") {
1382  return PseudoResonance::None;
1383  }
1384  if (s == "Largest") {
1385  return PseudoResonance::Largest;
1386  }
1387  if (s == "Closest") {
1388  return PseudoResonance::Closest;
1389  }
1390  if (s == "LargestFromUnstable") {
1392  }
1393  if (s == "ClosestFromUnstable") {
1395  }
1396  throw IncorrectTypeInAssignment(
1397  "The value for key \"" + std::string(key_) + "\" should be " +
1398  "\"None\", \"Largest\", \"Closest\", \"LargestFromUnstable\", or "
1399  "\"ClosestFromUnstable\".");
1400  }
@ Closest
Resonance with the pole mass closest from the invariant mass of incoming particles for all processes.
@ ClosestFromUnstable
Closest resonance for a given mass from processes with at least one resonance in the incoming particl...
@ None
No pseudo-resonance is created.
@ LargestFromUnstable
Heaviest possible resonance from processes with at least one resonance in the incoming particles.
@ Largest
Resonance of largest mass for all processes.

◆ operator FluidizationType()

smash::Configuration::Value::operator FluidizationType ( ) const
inline

Set condition of fluidization for hydrodynamic initial conditions.

Returns
FluidizationType.
Exceptions
IncorrectTypeInAssignmentin case a key that is not available is provided as a configuration value.

Definition at line 1410 of file configuration.h.

1410  {
1411  const std::string s = operator std::string();
1412  if (s == "Constant_Tau") {
1414  } else if (s == "Dynamic") {
1416  }
1417  throw IncorrectTypeInAssignment("The value for key \"" +
1418  std::string(key_) + "\" should be " +
1419  "\"Constant_Tau\" or \"Dynamic\".");
1420  }
@ ConstantTau
Hypersurface crossed at a fixed proper time.
@ Dynamic
Dynamic fluidization based on local densities.

◆ operator OutputOnlyFinal()

smash::Configuration::Value::operator OutputOnlyFinal ( ) const
inline

Set OutputOnlyFinal for particles output from configuration values.

Returns
OutputOnlyFinal.
Exceptions
IncorrectTypeInAssignmentin case only_final value that is not available is provided as a configuration value.

Definition at line 1429 of file configuration.h.

1429  {
1430  const std::string s = operator std::string();
1431  if (s == "Yes") {
1432  return OutputOnlyFinal::Yes;
1433  }
1434  if (s == "No") {
1435  return OutputOnlyFinal::No;
1436  }
1437  if (s == "IfNotEmpty") {
1439  }
1440  throw IncorrectTypeInAssignment("The value for key \"" +
1441  std::string(key_) + "\" should be " +
1442  "\"Yes\", \"No\" or \"IfNotEmpty\".");
1443  }
@ IfNotEmpty
Print only final-state particles, and those only if the event is not empty.
@ Yes
Print only final-state particles.
@ No
Print initial, intermediate and final-state particles.

◆ operator FluidizableProcessesBitSet()

smash::Configuration::Value::operator FluidizableProcessesBitSet ( ) const
inline

Set FluidizableProcessesBitSet from configuration values.

Returns
FluidizableProcessesBitSet with all included reaction types.
Exceptions
IncorrectTypeInAssignmentin case a reaction type that is not available is provided as a configuration value.

Definition at line 1452 of file configuration.h.

1452  {
1453  const std::vector<std::string> v = operator std::vector<std::string>();
1455  for (const auto &x : v) {
1456  if (x == "All") {
1457  s.set();
1458  break;
1459  } else if (x == "Elastic") {
1461  } else if (x == "Decay") {
1463  } else if (x == "Inelastic") {
1465  } else if (x == "SoftString") {
1467  } else if (x == "HardString") {
1469  } else {
1470  throw IncorrectTypeInAssignment(
1471  "The value for key \"" + std::string(key_) +
1472  "\" should be \"All\", \"Elastic\", \"Decay\", "
1473  "\"Inelastic\", \"SoftString\", \"HardString\", "
1474  "or any combination of these.");
1475  }
1476  }
1477  return s;
1478  }
std::bitset< 5 > FluidizableProcessesBitSet
@ From_HardString
@ From_Inelastic
@ From_Elastic
@ From_SoftString
@ From_Decay

Friends And Related Function Documentation

◆ Configuration

friend class Configuration
friend

Definition at line 804 of file configuration.h.

Member Data Documentation

◆ node_

const YAML::Node smash::Configuration::Value::node_
private

a YAML leaf node

Todo:
(steinberg) What is that?

Definition at line 807 of file configuration.h.

◆ key_

const char* const smash::Configuration::Value::key_
private

The key to be interpreted.

Definition at line 809 of file configuration.h.


The documentation for this class was generated from the following file: