Skip to content

Commit

Permalink
Use correct value of Lambda at the high-scale
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Harries committed Feb 10, 2017
1 parent c5fffa2 commit 56d55c4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/test_CNMSSM.hpp
Expand Up @@ -10,16 +10,19 @@ struct Boundary_values {
double m12{};
double Azero{};
double m0Sq{};
double Lambda{};
};

void setup_high_scale_CNMSSM_const(
flexiblesusy::CNMSSM_mass_eigenstates& model,
const Boundary_values& values)
{
model.set_Lambdax(values.Lambda);

model.set_TYu(model.get_Yu() * values.Azero);
model.set_TYd(model.get_Yd() * values.Azero);
model.set_TYe(model.get_Ye() * values.Azero);
model.set_TLambdax(model.get_Lambdax() * values.Azero);
model.set_TLambdax(values.Lambda * values.Azero);
model.set_TKappa(model.get_Kappa() * values.Azero);

model.set_mq2(values.m0Sq * UNITMATRIX(3));
Expand Down Expand Up @@ -47,6 +50,7 @@ void setup_high_scale_CNMSSM(
values.m12 = 133.33;
values.Azero = -300.;
values.m0Sq = Sqr(40.);
values.Lambda = -0.05;

setup_high_scale_CNMSSM_const(model, values);
}
Expand Down

0 comments on commit 56d55c4

Please sign in to comment.