Skip to content

Commit

Permalink
Print warning if low-scale is not set to SM[MZ]
Browse files Browse the repository at this point in the history
Currently only SM[MZ] is supported.  At some point we will replace
QedQcd by something more general, which will then allow for different
scales.
  • Loading branch information
Expander authored and Expander committed Apr 12, 2014
1 parent 8f34439 commit 343a889
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions meta/FlexibleSUSY.m
Expand Up @@ -155,6 +155,14 @@
Print["Warning: FlexibleSUSY`LowScale should be",
" set in the model file!"];
FlexibleSUSY`LowScale := SM[MZ];
,
If[FlexibleSUSY`LowScale =!= SM[MZ],
Print["Warning: The low-scale was set differently from MZ!"];
Print[" LowScale = ", FlexibleSUSY`LowScale];
Print[" This is currently not supported."];
Print[" I'm setting LowScale = SM[MZ]."];
FlexibleSUSY`LowScale = SM[MZ];
];
];
If[!ValueQ[FlexibleSUSY`LowScaleFirstGuess],
Print["Warning: FlexibleSUSY`LowScaleFirstGuess should be",
Expand Down

0 comments on commit 343a889

Please sign in to comment.