Skip to content

Commit

Permalink
initialize MSSMNoFV input parameters for the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Expander authored and Expander committed Oct 24, 2014
1 parent e54aa23 commit 4d8bcbd
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/test_MSSMNoFV_beta_functions.cpp
Expand Up @@ -63,6 +63,12 @@ void test_beta_function_equality(const T1& a, const T2& b)
BOOST_AUTO_TEST_CASE( test_MSSMNoFV_beta_functions )
{
MSSMNoFV_input_parameters input;
input.TanBeta = 10.;
input.m0 = 125.;
input.m12 = 200.;
input.SignMu = 1;
input.Azero = 0.;

MSSMNoFV<Two_scale> m1;
MSSM<Two_scale> m2;
setup_MSSM_models(m1, m2, input);
Expand Down
12 changes: 12 additions & 0 deletions test/test_MSSMNoFV_low_scale_constraint.cpp
Expand Up @@ -24,7 +24,19 @@ BOOST_AUTO_TEST_CASE( test_delta_alpha )
MSSM<Two_scale> mssm;
MSSMNoFV<Two_scale> mssmnofv;
MSSM_input_parameters input_mssm;
input_mssm.TanBeta = 10.;
input_mssm.m0 = 125.;
input_mssm.m12 = 200.;
input_mssm.SignMu = 1;
input_mssm.Azero = 0.;

MSSMNoFV_input_parameters input_mssmnofv;
input_mssmnofv.TanBeta = 10.;
input_mssmnofv.m0 = 125.;
input_mssmnofv.m12 = 200.;
input_mssmnofv.SignMu = 1;
input_mssmnofv.Azero = 0.;

QedQcd oneset;
setup_MSSM_models(mssm, mssmnofv, input_mssmnofv);

Expand Down
6 changes: 6 additions & 0 deletions test/test_MSSMNoFV_tree_level_spectrum.cpp
Expand Up @@ -145,6 +145,12 @@ void test_spectrum_equality(const MSSMNoFV<Two_scale>& a, const MSSM<Two_scale>&
BOOST_AUTO_TEST_CASE( test_MSSMNoFV_tree_level_spectrum )
{
MSSMNoFV_input_parameters input;
input.TanBeta = 10.;
input.m0 = 125.;
input.m12 = 200.;
input.SignMu = 1;
input.Azero = 0.;

MSSMNoFV<Two_scale> m1;
MSSM<Two_scale> m2;
setup_MSSM_models(m1, m2, input);
Expand Down

0 comments on commit 4d8bcbd

Please sign in to comment.