Skip to content

Commit

Permalink
use the correct ren-scheme name in the comments and user output
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Mar 3, 2017
1 parent daa2732 commit e5e4abf
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions meta/FlexibleSUSY.m
Expand Up @@ -648,6 +648,7 @@ FlexibleSUSY model file (FlexibleSUSY.m).
]
]]
],
"@RenScheme@" -> ToString[FlexibleSUSY`FSRenormalizationScheme],
"@ModelTypes@" -> FlexibleTower`GetModelTypes[],
"@DateAndTime@" -> DateString[],
"@SARAHVersion@" -> SA`Version,
Expand Down
2 changes: 1 addition & 1 deletion src/slha_io.cpp
Expand Up @@ -388,7 +388,7 @@ void SLHA_io::set_modsel(const Modsel& modsel_)
std::ostringstream ss;
ss << "Block MODSEL\n";
ss << FORMAT_ELEMENT(6 , qfv | lfv, "quark/lepton flavour violation");
ss << FORMAT_ELEMENT(12, modsel.parameter_output_scale, "DRbar parameter output scale (GeV)");
ss << FORMAT_ELEMENT(12, modsel.parameter_output_scale, "running parameter output scale (GeV)");

set_block(ss);
}
Expand Down
8 changes: 4 additions & 4 deletions src/standard_model.cpp
Expand Up @@ -471,7 +471,7 @@ void Standard_model::print(std::ostream& ostr) const
ostr << "mu2 = " << mu2 << '\n';
ostr << "v = " << v << '\n';
ostr << "----------------------------------------\n"
"tree-level DRbar masses:\n"
"tree-level MSbar masses:\n"
"----------------------------------------\n";
ostr << "MVG = " << MVG << '\n';
ostr << "MHp = " << MHp << '\n';
Expand All @@ -486,7 +486,7 @@ void Standard_model::print(std::ostream& ostr) const
ostr << "MVWp = " << MVWp << '\n';

ostr << "----------------------------------------\n"
"tree-level DRbar mixing matrices:\n"
"tree-level MSbar mixing matrices:\n"
"----------------------------------------\n";
ostr << "Vd = " << Vd << '\n';
ostr << "Ud = " << Ud << '\n';
Expand Down Expand Up @@ -544,7 +544,7 @@ double Standard_model::G0(double p, double m1, double m2) const
}

/**
* routine which finds the DRbar mass eigenstates and mixings.
* routine which finds the MSbar mass eigenstates and mixings.
*/
void Standard_model::calculate_DRbar_masses()
{
Expand Down Expand Up @@ -633,7 +633,7 @@ void Standard_model::check_pole_masses_for_tachyons()
}

/**
* calculates spectrum for model once the DRbar parameters at
* calculates spectrum for model once the MSbar parameters at
* at low energies are known
*/
void Standard_model::calculate_spectrum()
Expand Down
2 changes: 1 addition & 1 deletion src/standard_model_two_scale_model.cpp
Expand Up @@ -22,7 +22,7 @@
* @brief implementation of the SM model class
*
* Contains the definition of the SM model class methods
* which solve EWSB and calculate pole masses and mixings from DRbar
* which solve EWSB and calculate pole masses and mixings from MSbar
* parameters.
*
*/
Expand Down
12 changes: 6 additions & 6 deletions templates/mass_eigenstates.cpp.in
Expand Up @@ -23,7 +23,7 @@
* @brief implementation of the @ModelName@ model class
*
* Contains the definition of the @ModelName@ model class methods
* which solve EWSB and calculate pole masses and mixings from DRbar
* which solve EWSB and calculate pole masses and mixings from @RenScheme@
* parameters.
*
* This file was generated at @DateAndTime@ with FlexibleSUSY
Expand Down Expand Up @@ -468,11 +468,11 @@ void CLASSNAME::print(std::ostream& ostr) const
"========================================\n";
@ModelName@_soft_parameters::print(ostr);
ostr << "----------------------------------------\n"
"tree-level DRbar masses:\n"
"tree-level @RenScheme@ masses:\n"
"----------------------------------------\n";
@printMasses@
ostr << "----------------------------------------\n"
"tree-level DRbar mixing matrices:\n"
"tree-level @RenScheme@ mixing matrices:\n"
"----------------------------------------\n";
@printMixingMatrices@
physical.print(ostr);
Expand Down Expand Up @@ -523,7 +523,7 @@ double CLASSNAME::G0(double p, double m1, double m2) const
}

/**
* routine which finds the DRbar mass eigenstates and mixings.
* routine which finds the @RenScheme@ mass eigenstates and mixings.
*/
void CLASSNAME::calculate_DRbar_masses()
{
Expand Down Expand Up @@ -551,7 +551,7 @@ void CLASSNAME::copy_DRbar_masses_to_pole_masses()
}

/**
* reorders DRbar masses so that golstones are placed at the index
* reorders @RenScheme@ masses so that golstones are placed at the index
* specified in the model files definition of the associated
* gauge boson (see Z-boson definition in default particles.m file
* in the Models directory of your SARAH distribution for example)
Expand Down Expand Up @@ -581,7 +581,7 @@ void CLASSNAME::check_pole_masses_for_tachyons()
}

/**
* calculates spectrum for model once the DRbar parameters at
* calculates spectrum for model once the @RenScheme@ parameters at
* at low energies are known
*/
void CLASSNAME::calculate_spectrum()
Expand Down
2 changes: 1 addition & 1 deletion templates/two_scale_model.cpp.in
Expand Up @@ -23,7 +23,7 @@
* @brief implementation of the @ModelName@ model class
*
* Contains the definition of the @ModelName@ model class methods
* which solve EWSB and calculate pole masses and mixings from DRbar
* which solve EWSB and calculate pole masses and mixings from @RenScheme@
* parameters.
*
* This file was generated at @DateAndTime@ with FlexibleSUSY
Expand Down

0 comments on commit e5e4abf

Please sign in to comment.