Skip to content

Commit

Permalink
Shorten test/test_MRSSM2_gmm2.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jhyeon committed Sep 13, 2017
1 parent 23057e8 commit 1a5eaf7
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions test/test_MRSSM2_gmm2.cpp
Expand Up @@ -30,6 +30,7 @@ using namespace flexiblesusy;

BOOST_AUTO_TEST_CASE( test_amu )
{
typedef Eigen::DiagonalMatrix<double, 3> DiagonalMatrix3;
MRSSM2_input_parameters input;

// chargino dominance
Expand All @@ -42,21 +43,11 @@ BOOST_AUTO_TEST_CASE( test_amu )
input.MuDInput = 400;
input.MuUInput = 400;
input.BMuInput = Sqr(300);
input.mq2Input << Sqr(1000), 0, 0,
0, Sqr(1000), 0,
0, 0, Sqr(1000);
input.ml2Input << Sqr(500), 0, 0,
0, Sqr(500), 0,
0, 0, Sqr(500);
input.md2Input << Sqr(1000), 0, 0,
0, Sqr(1000), 0,
0, 0, Sqr(1000);
input.mu2Input << Sqr(1000), 0, 0,
0, Sqr(1000), 0,
0, 0, Sqr(1000);
input.me2Input << Sqr(500), 0, 0,
0, Sqr(500), 0,
0, 0, Sqr(500);
input.mq2Input = DiagonalMatrix3(Sqr(1000), Sqr(1000), Sqr(1000));
input.ml2Input = DiagonalMatrix3(Sqr( 500), Sqr( 500), Sqr( 500));
input.md2Input = DiagonalMatrix3(Sqr(1000), Sqr(1000), Sqr(1000));
input.mu2Input = DiagonalMatrix3(Sqr(1000), Sqr(1000), Sqr(1000));
input.me2Input = DiagonalMatrix3(Sqr( 500), Sqr( 500), Sqr( 500));
input.mS2Input = Sqr(2000);
input.mT2Input = Sqr(3000);
input.moc2Input = Sqr(1000);
Expand Down

0 comments on commit 1a5eaf7

Please sign in to comment.