Undefined mhh2

Questions about the interface between SARAH and SPheno as well as the FlavorKit functionality
Post Reply
JPEllis
Posts: 71
Joined: 28. Apr 2016, 10:34

Undefined mhh2

Post by JPEllis » 5. Mar 2017, 13:53

Hi Florian,

I have encountered an issue during compilation due to an undefined mhh2 symbol in Boundaries_MODEL.f90. It created from line 1657 from SPhenoBoundaries.m:

Code: Select all

WriteString[sphenoSugra,"mudim=GetRenormalizationScale()\n"];
WriteString[sphenoSugra,"mudim=Max(mudim,mZ2)\n"];
WriteString[sphenoSugra,"tz=0.5_dp*Log(mZ2/mudim)\n"];
WriteString[sphenoSugra,"dt=tz/100._dp \n"];
WriteString[sphenoSugra,"g_SM(1)=g_SM(1)*sqrt(5._dp/3._dp) \n"];
WriteString[sphenoSugra,"g_SM(4)=mhh2(1)/g_SM(62)**2 \n"];                                   (* <--- This line *)
WriteString[sphenoSugra,"Call odeint(g_SM,62,0._dp,tz,delta0,dt,0._dp,rge62_SM,kont) \n"];
WriteString[sphenoSugra,"g_SM(1)=g_SM(1)/sqrt(5._dp/3._dp) \n"];
WriteString[sphenoSugra,"Lambda_MZ=g_SM(4) \n"];
I, unfortunately, find no other reference to mhh2 in the Mathematica code. What is this hard coded variable meant to be?

Regards,

Josh
Joshua Ellis jpellis.me

FStaub
Site Admin
Posts: 822
Joined: 13. Apr 2016, 14:05

Re: Undefined mhh2

Post by FStaub » 5. Mar 2017, 14:02

Hi,

please replace the line by

Code: Select all

WriteString[sphenoSugra,  "g_SM(4)=" <> SPhenoMassSq[HiggsBoson, 1] <> "/g_SM(62)**2 \n"];
It will be fixed in the next release.

Cheers,
Florian

Post Reply