File indexing completed on 2025-12-13 10:29:02
0001 #ifndef ATOOLS_ORG_STRINGS_H
0002 #define ATOOLS_ORG_STRINGS_H
0003
0004 #include <string>
0005
0006 namespace ATOOLS {
0007
0008 namespace Strings {
0009
0010 constexpr char ProcessesSyntaxExamples[] =
0011 R"|(A valid PROCESSES example is:
0012
0013 PROCESSES:
0014 - 93 93 -> 11 -11:
0015 Order: {QCD: 0, EW: 2}
0016 Print_Graphs: Graphs
0017 - 93 93 -> 13 -13:
0018 Order: {QCD: 0, EW: 2}
0019
0020 This defines two processes, each with some process-specific settings.
0021 Note that the process-specific settings must be indented with respect
0022 to the first character of the process specification. See the "Processes"
0023 section in the manual for a more detailed description.
0024 )|";
0025
0026 constexpr char NoConfigFilesWarning[] =
0027 R"|(WARNING: No config file will be loaded. While it is possible to run Sherpa
0028 without config files, it is likely that this is not intended. Make sure that
0029 there is either a config file named "Sherpa.yaml" in the current working
0030 directory, or provide a config file on the command line like this:
0031 "Sherpa MySherpaFile.yaml".
0032 )|";
0033
0034 constexpr char OverrideAlphaSSplittingScalesWarning[] =
0035 R"|(WARNING: Shower variations are disabled (CSS_REWEIGHT: false), but the
0036 reweighting of the AlphaS input scales in splittings is enabled
0037 (REWEIGHT_SPLITTING_ALPHAS_SCALES: true). This would lead to an inconsistent
0038 reweighting of the splitting scales in the shower and in the reconstructed CKKW
0039 shower history. Therefore, the value of REWEIGHT_SPLITTING_ALPHAS_SCALES will
0040 be overriden to be false. Set it to false explicitly or remove your custom
0041 REWEIGHT_SPLITTING_ALPHAS_SCALES setting to silence this warning.
0042 )|";
0043
0044 constexpr char OverridePDFSplittingScalesWarning[] =
0045 R"|(WARNING: Shower variations are disabled (CSS_REWEIGHT: false), but the
0046 reweighting of the PDF input scales in splittings is enabled
0047 (REWEIGHT_SPLITTING_PDF_SCALES: true). This would lead to an inconsistent
0048 reweighting of the splitting scales in the shower and in the reconstructed CKKW
0049 shower history. Therefore, the value of REWEIGHT_SPLITTING_PDF_SCALES will
0050 be overriden to be false. Set it to false explicitly or remove your custom
0051 REWEIGHT_SPLITTING_PDF_SCALES setting to silence this warning.
0052 )|";
0053
0054 }
0055
0056 }
0057
0058 #endif