Version: SMASH-3.2
smash::ScatterActionsFinderParameters Class Reference

#include <scatteractionsfinderparameters.h>

Helper class for ScatterActionsFinder.

ScatterActionsFinder has one member of this class, which just collects general parameters, for easier function argument passing. In practice it is almost a POD structure containing constants defined externally, but allows for methods that depend on simple inputs, such as AQM_scaling_factor.

Definition at line 67 of file scatteractionsfinderparameters.h.

Public Member Functions

 ScatterActionsFinderParameters (Configuration &config, const ExperimentParameters &parameters)
 Class constructor. More...
 
double AQM_scaling_factor (const PdgCode &pdg) const
 AQM scaling factor for a hadron. More...
 

Public Attributes

const double elastic_parameter
 Elastic cross section parameter (in mb). More...
 
const double low_snn_cut
 Elastic collsions between two nucleons with sqrt_s below low_snn_cut_ are excluded. More...
 
const double scale_xs
 Factor by which all (partial) cross sections are scaled. More...
 
const double additional_el_xs
 Additional constant contribution (in mb) to the elastic cross sections. More...
 
const double maximum_cross_section
 
const CollisionCriterion coll_crit
 Specifies which collision criterion is used. More...
 
const NNbarTreatment nnbar_treatment
 Switch for NNbar reactions. More...
 
const ReactionsBitSet included_2to2
 List of included 2<->2 reactions. More...
 
const MultiParticleReactionsBitSet included_multi
 List of included multi-particle reactions. More...
 
const int testparticles
 Number of test particles. More...
 
const bool two_to_one
 Enables resonance production. More...
 
const bool allow_collisions_within_nucleus
 If particles within the same nucleus are allowed to collide for their first time. More...
 
const bool strings_switch
 Indicates whether string fragmentation is switched on. More...
 
const bool use_AQM
 Switch to control whether to use AQM or not. More...
 
const bool strings_with_probability
 This indicates whether the string fragmentation is swiched on with a probability smoothly increasing with energy. More...
 
const bool only_warn_for_high_prob
 Switch to turn off throwing an exception for collision probabilities larger than 1. More...
 
const StringTransitionParameters transition_high_energy
 Constants related to transition between low collision energies - mediated via resonances - and high collision energies - mediated via strings. More...
 
const TotalCrossSectionStrategy total_xs_strategy
 Method used to evaluate total cross sections for collision finding. More...
 
const PseudoResonance pseudoresonance_method
 Which pseudo-resonance to choose. More...
 

Private Attributes

const double AQM_strange_suppression = 0.4
 Factor to reduce cross sections for strange hadrons, this is currently fixed. More...
 
const double AQM_charm_suppression
 Factor to reduce cross sections for charmed hadrons. More...
 
const double AQM_bottom_suppression
 Factor to reduce cross sections for bottomed hadrons. More...
 

Constructor & Destructor Documentation

◆ ScatterActionsFinderParameters()

smash::ScatterActionsFinderParameters::ScatterActionsFinderParameters ( Configuration config,
const ExperimentParameters parameters 
)

Class constructor.

Parameters
[in]configThe relevant section from the user configuration
[in]parametersThe Experiment parameters
Exceptions
std::invalid_argumentIf configuration parameters are physically invalid

Definition at line 162 of file scatteractionsfinder.cc.

165  low_snn_cut(parameters.low_snn_cut),
166  scale_xs(parameters.scale_xs),
169  maximum_cross_section(parameters.maximum_cross_section),
170  coll_crit(parameters.coll_crit),
171  nnbar_treatment(parameters.nnbar_treatment),
172  included_2to2(parameters.included_2to2),
173  included_multi(parameters.included_multi),
174  testparticles(parameters.testparticles),
175  two_to_one(parameters.two_to_one),
178  strings_switch(parameters.strings_switch),
179  use_AQM(config.take(InputKeys::collTerm_useAQM)),
192  logg[LFindScatter].info(
193  "Evaluating total cross sections from partial processes.");
194  } else if (parameters.included_2to2[IncludedReactions::Elastic] == 1 &&
195  parameters.included_2to2.count() == 1) {
196  throw std::invalid_argument(
197  "The BottomUp strategy for total cross section evaluation is needed to "
198  "have only elastic interactions, please change the configuration "
199  "accordingly.");
201  logg[LFindScatter].info(
202  "Evaluating total cross sections from parametrizations.");
204  logg[LFindScatter].info(
205  "Evaluating total cross sections from parametrizations only for "
206  "measured processes.");
207  }
208 
211  throw std::invalid_argument(
212  "Suppression factors for AQM should be between 0 and 1.");
213  }
214 }
const bool strings_with_probability
This indicates whether the string fragmentation is swiched on with a probability smoothly increasing ...
const bool only_warn_for_high_prob
Switch to turn off throwing an exception for collision probabilities larger than 1.
const int testparticles
Number of test particles.
const ReactionsBitSet included_2to2
List of included 2<->2 reactions.
const bool use_AQM
Switch to control whether to use AQM or not.
const double scale_xs
Factor by which all (partial) cross sections are scaled.
const double elastic_parameter
Elastic cross section parameter (in mb).
const bool strings_switch
Indicates whether string fragmentation is switched on.
const StringTransitionParameters transition_high_energy
Constants related to transition between low collision energies - mediated via resonances - and high c...
const TotalCrossSectionStrategy total_xs_strategy
Method used to evaluate total cross sections for collision finding.
const double additional_el_xs
Additional constant contribution (in mb) to the elastic cross sections.
const double AQM_charm_suppression
Factor to reduce cross sections for charmed hadrons.
const MultiParticleReactionsBitSet included_multi
List of included multi-particle reactions.
const bool allow_collisions_within_nucleus
If particles within the same nucleus are allowed to collide for their first time.
const PseudoResonance pseudoresonance_method
Which pseudo-resonance to choose.
const NNbarTreatment nnbar_treatment
Switch for NNbar reactions.
const double low_snn_cut
Elastic collsions between two nucleons with sqrt_s below low_snn_cut_ are excluded.
const bool two_to_one
Enables resonance production.
const double AQM_bottom_suppression
Factor to reduce cross sections for bottomed hadrons.
const CollisionCriterion coll_crit
Specifies which collision criterion is used.
@ 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.
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
static StringTransitionParameters create_string_transition_parameters(Configuration &config)
static constexpr int LFindScatter
static const Key< bool > modi_collider_collisionWithinNucleus
See user guide description for more information.
Definition: input_keys.h:3163
static const Key< bool > collTerm_onlyWarnForHighProbability
See user guide description for more information.
Definition: input_keys.h:2379
static const Key< double > collTerm_additionalElasticCrossSection
See user guide description for more information.
Definition: input_keys.h:2018
static const Key< bool > collTerm_stringsWithProbability
See user guide description for more information.
Definition: input_keys.h:2487
static const Key< PseudoResonance > collTerm_pseudoresonance
See user guide description for more information.
Definition: input_keys.h:2413
static const Key< bool > collTerm_useAQM
See user guide description for more information.
Definition: input_keys.h:2563
static const Key< TotalCrossSectionStrategy > collTerm_totXsStrategy
See user guide description for more information.
Definition: input_keys.h:2519
static const Key< double > collTerm_elasticCrossSection
See user guide description for more information.
Definition: input_keys.h:2098
static const Key< double > collTerm_HF_AQMbSuppression
See user guide description for more information.
Definition: input_keys.h:1989
static const Key< double > collTerm_HF_AQMcSuppression
See user guide description for more information.
Definition: input_keys.h:2002

Member Function Documentation

◆ AQM_scaling_factor()

double smash::ScatterActionsFinderParameters::AQM_scaling_factor ( const PdgCode pdg) const
inline

AQM scaling factor for a hadron.

The suppression factor for strangeness is fixed to 40%, while the charm and bottom can be configured.

Parameters
[in]pdgof the particle

Definition at line 146 of file scatteractionsfinderparameters.h.

146  {
147  return (1 - AQM_strange_suppression * pdg.frac_strange()) *
148  (1 - AQM_charm_suppression * pdg.frac_charm()) *
149  (1 - AQM_bottom_suppression * pdg.frac_bottom());
150  }
const double AQM_strange_suppression
Factor to reduce cross sections for strange hadrons, this is currently fixed.

Member Data Documentation

◆ elastic_parameter

const double smash::ScatterActionsFinderParameters::elastic_parameter

Elastic cross section parameter (in mb).

Definition at line 80 of file scatteractionsfinderparameters.h.

◆ low_snn_cut

const double smash::ScatterActionsFinderParameters::low_snn_cut

Elastic collsions between two nucleons with sqrt_s below low_snn_cut_ are excluded.

Definition at line 85 of file scatteractionsfinderparameters.h.

◆ scale_xs

const double smash::ScatterActionsFinderParameters::scale_xs

Factor by which all (partial) cross sections are scaled.

Definition at line 87 of file scatteractionsfinderparameters.h.

◆ additional_el_xs

const double smash::ScatterActionsFinderParameters::additional_el_xs

Additional constant contribution (in mb) to the elastic cross sections.

Using it will break agreement with experimental data for elastic cross sections that are constrained with data.

Definition at line 94 of file scatteractionsfinderparameters.h.

◆ maximum_cross_section

const double smash::ScatterActionsFinderParameters::maximum_cross_section
See also
input_collision_term_

Definition at line 96 of file scatteractionsfinderparameters.h.

◆ coll_crit

const CollisionCriterion smash::ScatterActionsFinderParameters::coll_crit

Specifies which collision criterion is used.

Definition at line 98 of file scatteractionsfinderparameters.h.

◆ nnbar_treatment

const NNbarTreatment smash::ScatterActionsFinderParameters::nnbar_treatment

Switch for NNbar reactions.

Definition at line 100 of file scatteractionsfinderparameters.h.

◆ included_2to2

const ReactionsBitSet smash::ScatterActionsFinderParameters::included_2to2

List of included 2<->2 reactions.

Definition at line 102 of file scatteractionsfinderparameters.h.

◆ included_multi

const MultiParticleReactionsBitSet smash::ScatterActionsFinderParameters::included_multi

List of included multi-particle reactions.

Definition at line 104 of file scatteractionsfinderparameters.h.

◆ testparticles

const int smash::ScatterActionsFinderParameters::testparticles

Number of test particles.

Definition at line 106 of file scatteractionsfinderparameters.h.

◆ two_to_one

const bool smash::ScatterActionsFinderParameters::two_to_one

Enables resonance production.

Definition at line 108 of file scatteractionsfinderparameters.h.

◆ allow_collisions_within_nucleus

const bool smash::ScatterActionsFinderParameters::allow_collisions_within_nucleus

If particles within the same nucleus are allowed to collide for their first time.

Definition at line 111 of file scatteractionsfinderparameters.h.

◆ strings_switch

const bool smash::ScatterActionsFinderParameters::strings_switch

Indicates whether string fragmentation is switched on.

Definition at line 113 of file scatteractionsfinderparameters.h.

◆ use_AQM

const bool smash::ScatterActionsFinderParameters::use_AQM

Switch to control whether to use AQM or not.

Definition at line 115 of file scatteractionsfinderparameters.h.

◆ strings_with_probability

const bool smash::ScatterActionsFinderParameters::strings_with_probability

This indicates whether the string fragmentation is swiched on with a probability smoothly increasing with energy.

If it's set equal to false, the cross section of the string fragmentation is counted by taking the difference between the parametrized total cross section and the sum of the non-string cross sections.

Definition at line 123 of file scatteractionsfinderparameters.h.

◆ only_warn_for_high_prob

const bool smash::ScatterActionsFinderParameters::only_warn_for_high_prob

Switch to turn off throwing an exception for collision probabilities larger than 1.

In larger production runs it is ok, if the probability rarely slips over 1.

Definition at line 129 of file scatteractionsfinderparameters.h.

◆ transition_high_energy

const StringTransitionParameters smash::ScatterActionsFinderParameters::transition_high_energy

Constants related to transition between low collision energies - mediated via resonances - and high collision energies - mediated via strings.

Definition at line 134 of file scatteractionsfinderparameters.h.

◆ total_xs_strategy

const TotalCrossSectionStrategy smash::ScatterActionsFinderParameters::total_xs_strategy

Method used to evaluate total cross sections for collision finding.

Definition at line 136 of file scatteractionsfinderparameters.h.

◆ pseudoresonance_method

const PseudoResonance smash::ScatterActionsFinderParameters::pseudoresonance_method

Which pseudo-resonance to choose.

Definition at line 138 of file scatteractionsfinderparameters.h.

◆ AQM_strange_suppression

const double smash::ScatterActionsFinderParameters::AQM_strange_suppression = 0.4
private

Factor to reduce cross sections for strange hadrons, this is currently fixed.

Definition at line 155 of file scatteractionsfinderparameters.h.

◆ AQM_charm_suppression

const double smash::ScatterActionsFinderParameters::AQM_charm_suppression
private

Factor to reduce cross sections for charmed hadrons.

Definition at line 157 of file scatteractionsfinderparameters.h.

◆ AQM_bottom_suppression

const double smash::ScatterActionsFinderParameters::AQM_bottom_suppression
private

Factor to reduce cross sections for bottomed hadrons.

Definition at line 159 of file scatteractionsfinderparameters.h.


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