Skip to content

Commit

Permalink
[susy2] in susyggtt.sa Parameters.h, fix mdl_G__exp__2 as in SM ggtt.…
Browse files Browse the repository at this point in the history
…sa (why is this different here??)

Replace
      constexpr cxsmpl<double> mdl_G__exp__2 = ( ( G ) * ( G ) );
by
      const fptype_sv mdl_G__exp__2 = ( ( G ) * ( G ) );
  • Loading branch information
valassi committed Apr 3, 2023
1 parent bd5db8f commit 36dfe05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion epochX/cudacpp/susy_gg_tt.sa/src/Parameters_MSSM_SLHA2.h
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ namespace Parameters_MSSM_SLHA2_dependentCouplings
// Model parameters dependent on aS
//const fptype_sv mdl_sqrt__aS = constexpr_sqrt( aS );
//const fptype_sv G = 2. * mdl_sqrt__aS * constexpr_sqrt( M_PI );
constexpr cxsmpl<double> mdl_G__exp__2 = ( ( G ) * ( G ) );
const fptype_sv mdl_G__exp__2 = ( ( G ) * ( G ) );
// Model couplings dependent on aS
out.GC_6 = -G;
out.GC_51 = -( cI * G * mdl_I51x11 );
Expand Down

0 comments on commit 36dfe05

Please sign in to comment.