Skip to content

Commit

Permalink
adapt GM2Calc model to commit 86a4eda
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Feb 7, 2017
1 parent a446515 commit 34226ee
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions addons/GM2Calc/MSSMNoFV_onshell_mass_eigenstates.cpp
Expand Up @@ -438,26 +438,18 @@ std::string CLASSNAME::name() const

Eigen::Array<double,1,1> CLASSNAME::get_MChargedHiggs() const
{
Eigen::Array<double,1,1> MHpm_ChargedHiggs;
Eigen::Array<double,1,1> MHpm_goldstone;

MHpm_goldstone(0) = MVWm;

remove_if_equal(MHpm, MHpm_goldstone, MHpm_ChargedHiggs);

return MHpm_ChargedHiggs;
return remove_if_equal(MHpm, MHpm_goldstone);
}

Eigen::Array<double,1,1> CLASSNAME::get_MPseudoscalarHiggs() const
{
Eigen::Array<double,1,1> MAh_PseudoscalarHiggs;
Eigen::Array<double,1,1> MAh_goldstone;

MAh_goldstone(0) = MVZ;

remove_if_equal(MAh, MAh_goldstone, MAh_PseudoscalarHiggs);

return MAh_PseudoscalarHiggs;
return remove_if_equal(MAh, MAh_goldstone);
}


Expand Down

0 comments on commit 34226ee

Please sign in to comment.