Sebastian found a small issue regarding the generated Mathematica expressions for the 2-loop Higgs mass corrections. When one calls the following commands (which we aim to do in FlexibleSUSY):
Code: Select all
Needs["SARAH`"]
Start["MSSM","CPV"]
CalcRGEs[];
CalcLoopCorrections[EWSB];
Calc2LoopCorrections[EWSB];
Sebastian has already prepared a fix: The issue is fixed if one replaces line 39 in the file Package/TwoLoopPole.m:
Code: Select all
$sarahCurrentOutputDir=ToFileName[{$sarahOutputDir,$sarahModelNameMain,sstates}];
Code: Select all
$sarahCurrentOutputDir=ToFileName[{$sarahCurrentOutputMainDir,sstates}];
Alex and Sebastian