Version: SMASH-3.2
outputparameters.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017-2024
3  * SMASH Team
4  *
5  * GNU General Public License (GPLv3 or later)
6  */
7 #ifndef SRC_INCLUDE_SMASH_OUTPUTPARAMETERS_H_
8 #define SRC_INCLUDE_SMASH_OUTPUTPARAMETERS_H_
9 
10 #include <map>
11 #include <set>
12 #include <string>
13 #include <vector>
14 
15 #include "configuration.h"
16 #include "cxx17compat.h"
17 #include "density.h"
18 #include "forwarddeclarations.h"
19 #include "input_keys.h"
20 #include "logging.h"
21 
22 namespace smash {
23 static constexpr int LExperiment = LogArea::Experiment::id;
24 
31  std::optional<std::map<std::string, std::string>> logs{std::nullopt};
33  std::optional<std::vector<std::string>> paths{std::nullopt};
35  std::optional<std::vector<std::string>> preloads{std::nullopt};
37  std::optional<std::vector<std::string>> analyses{std::nullopt};
39  std::optional<std::vector<std::string>> to_be_enabled_weights{std::nullopt};
41  std::optional<std::vector<std::string>> to_be_disabled_weights{std::nullopt};
43  std::optional<std::array<double, 2>> cross_sections{std::nullopt};
45  std::optional<std::string> nominal_weight_name{std::nullopt};
47  std::optional<double> cap_on_weights{std::nullopt};
49  std::optional<double> nlo_smearing{std::nullopt};
51  std::optional<bool> no_multi_weight{std::nullopt};
53  bool ignore_beams{true};
56 };
57 
67  td_rho_eckart(false),
68  td_tmn(false),
69  td_tmn_landau(false),
70  td_v_landau(false),
71  td_jQBS(false),
72  td_smearing(true),
73  td_only_participants(false),
74  part_extended(false),
76  coll_extended(false),
77  coll_printstartend(false),
78  dil_extended(false),
79  photons_extended(false),
80  ic_extended(false),
82  quantities{} {}
83 
87 
89  auto thermo_conf = conf.extract_complete_sub_configuration(
91  if (thermo_conf.has_value(InputKeys::output_thermodynamics_position)) {
92  const std::array<double, 3> a =
94  td_position = ThreeVector(a[0], a[1], a[2]);
95  }
96  std::set<ThermodynamicQuantity> quan =
99  td_tmn = (quan.count(ThermodynamicQuantity::Tmn) > 0);
102  td_jQBS = (quan.count(ThermodynamicQuantity::j_QBS) > 0);
106  logg[LExperiment].warn(
107  "Requested Thermodynamics output with Density type None. ",
108  "Change the density type to avoid output being dropped.");
109  }
113  }
114 
115  /* Unconditionally take quantities from the configuration file. This is
116  * needed because the 'Format' key in the output content sub-section is
117  * taken before this object is instantiated and that might be the only
118  * present key making the sub-section disappear before the configuration is
119  * handed over to this constructor. As a positive consequence, the
120  * quantities map has always the entry set, at least to an empty list. This
121  * is assumed elsewhere in the code and it ensured here. */
122  const auto part_quantities =
124  quantities.insert({"Particles", part_quantities});
125  const auto coll_quantities =
127  quantities.insert({"Collisions", coll_quantities});
128  /* In the same spirit, always take also other particles and collisions keys.
129  * This makes the class behaviour bounded to the key default value and not
130  * to the class member initial value. */
135 
138  }
139 
142  }
143 
146  }
147 
149  auto rivet_conf =
151  /*
152  * std::optional<T> can be assigned from a value using the
153  * template<class U = T> optional& operator=( U&& value );
154  * which is a perfect-forwarded assignment. However, in more complex cases
155  * like here where we use a Configuration::Value object returned by
156  * Configuration::take as value, it might be sometimes needed to
157  * explicitly specify the type U. It is then advantageous to use
158  * std::make_optional. When T is a built-in type, an assignment would work
159  * (although not that mentioned above), but std::make_optional also works.
160  * Note that GNU compiler has a buggy implementation of std::make_optional
161  * in versions from 8.1 till 8.3 and hence we use here make_optional and
162  * not std::make_optional. For faulty GNU versions the implementation
163  * shipped within smash namespace is then used, while in all other cases
164  * std::make_optional is used.
165  */
166  if (rivet_conf.has_value(InputKeys::output_rivet_logging)) {
168  make_optional<std::map<std::string, std::string>>(
169  rivet_conf.take(InputKeys::output_rivet_logging));
170  }
171  if (rivet_conf.has_value(InputKeys::output_rivet_paths)) {
172  rivet_parameters.paths = make_optional<std::vector<std::string>>(
173  rivet_conf.take(InputKeys::output_rivet_paths));
174  }
175  if (rivet_conf.has_value(InputKeys::output_rivet_preloads)) {
176  rivet_parameters.preloads = make_optional<std::vector<std::string>>(
177  rivet_conf.take(InputKeys::output_rivet_preloads));
178  }
179  if (rivet_conf.has_value(InputKeys::output_rivet_analyses)) {
180  rivet_parameters.analyses = make_optional<std::vector<std::string>>(
181  rivet_conf.take(InputKeys::output_rivet_analyses));
182  }
183  if (rivet_conf.has_value(InputKeys::output_rivet_crossSection)) {
184  rivet_parameters.cross_sections = make_optional<std::array<double, 2>>(
185  rivet_conf.take(InputKeys::output_rivet_crossSection));
186  }
188  rivet_conf.take(InputKeys::output_rivet_ignoreBeams);
189  if (rivet_conf.has_section(InputSections::o_r_weights)) {
191  if (rivet_conf.has_value(InputKeys::output_rivet_weights_select)) {
193  make_optional<std::vector<std::string>>(
194  rivet_conf.take(InputKeys::output_rivet_weights_select));
195  }
196  if (rivet_conf.has_value(InputKeys::output_rivet_weights_deselect)) {
198  make_optional<std::vector<std::string>>(
200  }
201  if (rivet_conf.has_value(InputKeys::output_rivet_weights_nominal)) {
202  rivet_parameters.nominal_weight_name = make_optional<std::string>(
203  rivet_conf.take(InputKeys::output_rivet_weights_nominal));
204  }
205  if (rivet_conf.has_value(InputKeys::output_rivet_weights_cap)) {
206  rivet_parameters.cap_on_weights = make_optional<double>(
207  rivet_conf.take(InputKeys::output_rivet_weights_cap));
208  }
209  if (rivet_conf.has_value(InputKeys::output_rivet_weights_nloSmearing)) {
210  rivet_parameters.nlo_smearing = make_optional<double>(
212  }
213  if (rivet_conf.has_value(InputKeys::output_rivet_weights_noMulti)) {
214  rivet_parameters.no_multi_weight = make_optional<bool>(
215  rivet_conf.take(InputKeys::output_rivet_weights_noMulti));
216  }
217  }
218  }
219  }
220 
223 
226 
229 
231  bool td_tmn;
232 
238 
241 
243  bool td_jQBS;
244 
250 
256 
259 
262 
265 
268 
271 
274 
277 
280 
288  std::map<std::string, std::vector<std::string>> quantities;
289 };
290 
296  inline static const std::vector<std::string> oscar2013 = {
297  "t", "x", "y", "z", "mass", "p0",
298  "px", "py", "pz", "pdg", "ID", "charge"};
300  inline static const std::vector<std::string> oscar2013extended = {
301  "t",
302  "x",
303  "y",
304  "z",
305  "mass",
306  "p0",
307  "px",
308  "py",
309  "pz",
310  "pdg",
311  "ID",
312  "charge",
313  "ncoll",
314  "form_time",
315  "xsecfac",
316  "proc_id_origin",
317  "proc_type_origin",
318  "time_last_coll",
319  "pdg_mother1",
320  "pdg_mother2",
321  "baryon_number",
322  "strangeness"};
324  inline static const std::vector<std::string> oscar1999 = {
325  "id", "pdg", "0", "px", "py", "pz", "p0", "mass", "x", "y", "z", "t"};
326 };
327 
328 } // namespace smash
329 
330 #endif // SRC_INCLUDE_SMASH_OUTPUTPARAMETERS_H_
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.
The ThreeVector class represents a physical three-vector with the components .
Definition: threevector.h:31
@ None
Don't use time steps; propagate from action to action.
@ 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.
DensityType
Allows to choose which kind of density to calculate.
OutputOnlyFinal
Whether and when only final state particles should be printed.
@ Yes
Print only final-state particles.
#define SMASH_SOURCE_LOCATION
Hackery that is required to output the location in the source code where the log statement occurs.
Definition: logging.h:153
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
Definition: action.h:24
static constexpr int LExperiment
static const Key< bool > output_initialConditions_extended
See user guide description for more information.
Definition: input_keys.h:4867
static const Key< std::vector< std::string > > output_rivet_weights_select
See user guide description for more information.
Definition: input_keys.h:5132
static const Key< bool > output_rivet_weights_noMulti
See user guide description for more information.
Definition: input_keys.h:5102
static const Key< std::string > output_rivet_weights_nominal
See user guide description for more information.
Definition: input_keys.h:5117
static const Key< std::set< ThermodynamicQuantity > > output_thermodynamics_quantites
See user guide description for more information.
Definition: input_keys.h:5221
static const Key< DensityType > output_thermodynamics_type
See user guide description for more information.
Definition: input_keys.h:5278
static const Key< bool > output_rivet_ignoreBeams
See user guide description for more information.
Definition: input_keys.h:4996
static const Key< std::vector< std::string > > output_rivet_preloads
See user guide description for more information.
Definition: input_keys.h:5040
static const Key< double > output_rivet_weights_cap
See user guide description for more information.
Definition: input_keys.h:5058
static const Key< bool > output_particles_extended
See user guide description for more information.
Definition: input_keys.h:4720
static const Key< std::array< double, 3 > > output_thermodynamics_position
See user guide description for more information.
Definition: input_keys.h:5191
static const Key< std::vector< std::string > > output_rivet_paths
See user guide description for more information.
Definition: input_keys.h:5026
static const Key< bool > output_collisions_extended
See user guide description for more information.
Definition: input_keys.h:4776
static const Key< OutputOnlyFinal > output_particles_onlyFinal
See user guide description for more information.
Definition: input_keys.h:4755
static const Key< std::vector< std::string > > output_particles_quantities
See user guide description for more information.
Definition: input_keys.h:4736
static const Key< std::vector< std::string > > output_rivet_analyses
See user guide description for more information.
Definition: input_keys.h:4967
static const Key< bool > output_dileptons_extended
See user guide description for more information.
Definition: input_keys.h:4828
static const Key< bool > output_thermodynamics_onlyParticipants
See user guide description for more information.
Definition: input_keys.h:5178
static const Key< std::array< double, 2 > > output_rivet_crossSection
See user guide description for more information.
Definition: input_keys.h:4980
static const Key< std::vector< std::string > > output_rivet_weights_deselect
See user guide description for more information.
Definition: input_keys.h:5072
static const Key< bool > output_collisions_printStartEnd
See user guide description for more information.
Definition: input_keys.h:4810
static const Key< bool > output_thermodynamics_smearing
See user guide description for more information.
Definition: input_keys.h:5260
static const Key< std::map< std::string, std::string > > output_rivet_logging
See user guide description for more information.
Definition: input_keys.h:5012
static const Key< double > output_rivet_weights_nloSmearing
See user guide description for more information.
Definition: input_keys.h:5087
static const Key< bool > output_photons_extended
See user guide description for more information.
Definition: input_keys.h:4846
static const Key< std::vector< std::string > > output_collisions_quantities
See user guide description for more information.
Definition: input_keys.h:4794
static const Section o_rivet
Subsection for the output Rivet content.
Definition: input_keys.h:156
static const Section o_r_weights
Subsection for the output Rivet weights information.
Definition: input_keys.h:158
static const Section o_thermodynamics
Subsection for the output thermodynamics content.
Definition: input_keys.h:160
static const Section o_dileptons
Subsection for the output dileptons content.
Definition: input_keys.h:147
static const Section o_photons
Subsection for the output photons content.
Definition: input_keys.h:154
static const Section o_initialConditions
Subsection for the output initial conditions content.
Definition: input_keys.h:149
Struct that holds quantities required by default output standards.
static const std::vector< std::string > oscar1999
Quantities output in OSCAR1999 format.
static const std::vector< std::string > oscar2013
Quantities output in OSCAR2013 format.
static const std::vector< std::string > oscar2013extended
Quantities output in Extended OSCAR2013 format.
Helper structure for Experiment to hold output options and parameters.
bool dil_extended
Extended format for dilepton output.
OutputParameters()
Default constructor, useful for tests.
bool coll_extended
Extended format for collisions output.
bool part_extended
Extended format for particles output.
bool photons_extended
Extended format for photon output.
bool td_v_landau
Print out Landau velocity of type td_dens_type or not?
bool td_tmn_landau
Print out energy-momentum tensor in Landau rest frame (of type td_dens_type) or not?
RivetOutputParameters rivet_parameters
Rivet specfic parameters.
std::map< std::string, std::vector< std::string > > quantities
Map of quantities to be printed in the output.
bool td_jQBS
Print out QBS 4-currents or not?
OutputOnlyFinal part_only_final
Print only final particles in event.
DensityType td_dens_type
Type (e.g., baryon/pion/hadron) of thermodynamic quantity.
OutputParameters(Configuration conf)
Constructor from configuration.
bool td_tmn
Print out energy-momentum tensor of type td_dens_type or not?
bool td_smearing
Whether smearing is on or off; WARNING : if smearing is off, then final result is in GeV instead of G...
bool td_rho_eckart
Print out Eckart rest frame density of type td_dens_type or not?
bool td_only_participants
Flag reporting whether only participants are considered (true) or also spectators (false)
bool ic_extended
Extended initial conditions output.
ThreeVector td_position
Point, where thermodynamic quantities are calculated.
bool coll_printstartend
Print initial and final particles in event into collision output.
Helper structure for OutputParameters in order to store and hand over Rivet parameters.
std::optional< std::vector< std::string > > to_be_enabled_weights
Weights to be enabled for processing.
std::optional< std::string > nominal_weight_name
Nominal weight name.
std::optional< std::map< std::string, std::string > > logs
Logging in Rivet.
std::optional< std::vector< std::string > > preloads
Data files to pre-load e.g., for centrality configurations.
std::optional< std::vector< std::string > > paths
Paths to analyses libraries and data.
std::optional< double > nlo_smearing
How to smear for NLO calculations.
std::optional< std::vector< std::string > > analyses
Analyses (including options) to add to run.
bool ignore_beams
Whether Rivet should ignore beams.
std::optional< double > cap_on_weights
Cap (maximum) on weights.
std::optional< bool > no_multi_weight
Whether Rivet should not care about multi weights.
std::optional< std::vector< std::string > > to_be_disabled_weights
Weights to be disabled for processing.
bool any_weight_parameter_was_given
Whether any weight parameter was specified.
std::optional< std::array< double, 2 > > cross_sections
Cross sections.