Skip to content

Commit

Permalink
better guess for SM model parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt committed Jul 13, 2015
1 parent 58af660 commit 28d35d1
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions test/test_SM_root_solver.cpp
Expand Up @@ -10,6 +10,7 @@

#include "two_scale_running_precision.hpp"
#include "error.hpp"
#include "ew_input.hpp"
#include "lowe.h"
#include <Eigen/Core>

Expand All @@ -26,20 +27,21 @@ SM<Root> guess(const SM_input_parameters& input)

sm.set_scale(100);

sm.set_g1(0.1);
sm.set_g2(0.1);
sm.set_g3(0.1);
sm.set_g1(Electroweak_constants::g1);
sm.set_g2(Electroweak_constants::g2);
sm.set_g3(Electroweak_constants::g3);
sm.set_Yu(0,0,0.001);
sm.set_Yu(1,1,0.01);
sm.set_Yu(2,2,0.1);
sm.set_Yu(2,2,Electroweak_constants::yt);
sm.set_Yd(0,0,0.001);
sm.set_Yd(1,1,0.01);
sm.set_Yd(2,2,0.1);
sm.set_Yd(2,2,Electroweak_constants::yb);
sm.set_Ye(0,0,0.001);
sm.set_Ye(1,1,0.01);
sm.set_Ye(2,2,0.1);
sm.set_Ye(2,2,Electroweak_constants::ytau);
sm.set_Lambdax(0.1);
sm.set_mu2(10);
sm.set_v(245);
sm.set_mu2(100);

return sm;
}
Expand Down

0 comments on commit 28d35d1

Please sign in to comment.