Skip to content

Commit

Permalink
rename vev -> VEV
Browse files Browse the repository at this point in the history
because it is very likely that a user will use the symbol `vev'
as a model parameter
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Jul 27, 2016
1 parent 4ed07e0 commit 489ccb1
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
1 change: 1 addition & 0 deletions meta/FlexibleSUSY.m
Expand Up @@ -97,6 +97,7 @@ FlexibleSUSY model file (FlexibleSUSY.m).
ThetaWDRbar;
SCALE;
THRESHOLD;
VEV::usage = "running SM-like VEV in the full model";
UseHiggs2LoopNMSSM;
EffectiveMu;
EffectiveMASqr;
Expand Down
8 changes: 3 additions & 5 deletions model_files/CMSSMMuBMutower/FlexibleSUSY.m.in
Expand Up @@ -43,12 +43,10 @@ HighScaleInput = {

InitialGuessAtSUSYScale = InitialGuessAtHighScale = HighScaleInput;

(* InitialGuessAtLowScale is ignored if SMTower is true *)
(* vev is a keyword in SUSYScaleMatching, describing SM-like VEV in the full theory *)

(* VEV is the SM-like VEV in the MSSM *)
SUSYScaleMatching = {
{vu, vev Sin[ArcTan[TanBeta]]},
{vd, vev Cos[ArcTan[TanBeta]]}
{vu, VEV Sin[ArcTan[TanBeta]]},
{vd, VEV Cos[ArcTan[TanBeta]]}
};

LowScale = LowEnergyConstant[MZ];
Expand Down
5 changes: 3 additions & 2 deletions model_files/MRSSMtower/FlexibleSUSY.m.in
Expand Up @@ -48,9 +48,10 @@ SUSYScaleInput = {

InitialGuessAtSUSYScale = SUSYScaleInput;

(* VEV is the SM-like VEV in the MRSSM *)
SUSYScaleMatching = {
{vu, vev Sin[ArcTan[TanBeta]]},
{vd, vev Cos[ArcTan[TanBeta]]}
{vu, VEV Sin[ArcTan[TanBeta]]},
{vd, VEV Cos[ArcTan[TanBeta]]}
};

LowScale = LowEnergyConstant[MZ];
Expand Down
6 changes: 3 additions & 3 deletions model_files/MSSMtower/FlexibleSUSY.m.in
Expand Up @@ -57,10 +57,10 @@ InitialGuessAtSUSYScale = {
{T[Yu][3,3], (Ms/TanBeta + Xtt Ms) Yu[3,3]}
};

(* vev is the SM-like VEV in the MSSM *)
(* VEV is the SM-like VEV in the MSSM *)
SUSYScaleMatching = {
{vu, vev Sin[ArcTan[TanBeta]]},
{vd, vev Cos[ArcTan[TanBeta]]}
{vu, VEV Sin[ArcTan[TanBeta]]},
{vd, VEV Cos[ArcTan[TanBeta]]}
};

LowScale = LowEnergyConstant[MZ];
Expand Down
2 changes: 1 addition & 1 deletion model_files/SMtower/FlexibleSUSY.m.in
Expand Up @@ -39,7 +39,7 @@ InitialGuessAtSUSYScale = {
}

SUSYScaleMatching = {
{v, vev}
{v, VEV}
};

SMParticles = {
Expand Down
4 changes: 2 additions & 2 deletions templates/standard_model_matching.cpp.in
Expand Up @@ -101,7 +101,7 @@ void @ModelName@_standard_model_matching::match_low_to_high_scale_model_tree_lev

{
@ModelName@_mass_eigenstates* MODEL = &model;
const auto vev = sm.get_v();
const double VEV = sm.get_v();

@applyUserMatching@
}
Expand Down Expand Up @@ -228,7 +228,7 @@ void @ModelName@_standard_model_matching::match_low_to_high_scale_model(

{
@ModelName@_mass_eigenstates* MODEL = &model;
const double vev = 2. * AbsSqrt(mZ2_1L/(Sqr(g1_1L*@ModelName@_info::normalization_g1) + Sqr(g2_1L*@ModelName@_info::normalization_g2)));
const double VEV = 2. * AbsSqrt(mZ2_1L/(Sqr(g1_1L*@ModelName@_info::normalization_g1) + Sqr(g2_1L*@ModelName@_info::normalization_g2)));

@applyUserMatching@
}
Expand Down

0 comments on commit 489ccb1

Please sign in to comment.