Skip to content

Commit

Permalink
Adapt model files to alternative interface for extra parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Harries committed Feb 2, 2017
1 parent f1fd7cb commit 56c3db9
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 13 deletions.
14 changes: 10 additions & 4 deletions model_files/CE6SSM/FlexibleSUSY.m.in
Expand Up @@ -19,10 +19,16 @@ EXTPAR = {
{66, Lambda12Input}
};

FSAuxiliaryParameters = {
{m0Sq, {1}},
{m12, {1}},
{Azero, {1}}
FSAuxiliaryParameterInfo = {
{m0Sq, { ParameterDimensions -> {1},
MassDimension -> 2,
Real -> True } },
{m12, { ParameterDimensions -> {1},
MassDimension -> 1,
Real -> True } },
{Azero, { ParameterDimensions -> {1},
MassDimension -> 1,
Real -> True } }
};

EWSBOutputParameters = { m0Sq, m12, Azero };
Expand Down
10 changes: 7 additions & 3 deletions model_files/CMSSMSemiAnalytic/FlexibleSUSY.m.in
Expand Up @@ -17,9 +17,13 @@ EXTPAR = {
{23, MuInput}
};

FSAuxiliaryParameters = {
{m0Sq, {1}},
{BMu0, {1}}
FSAuxiliaryParameterInfo = {
{m0Sq, { ParameterDimensions -> {1},
MassDimension -> 2,
Real -> True } },
{BMu0, { ParameterDimensions -> {1},
MassDimension -> 2,
Real -> True } }
};

EWSBOutputParameters = { BMu0, m0Sq };
Expand Down
9 changes: 7 additions & 2 deletions model_files/CNMSSM/FlexibleSUSY.m.in
Expand Up @@ -18,8 +18,13 @@ EXTPAR = {
{61, LambdaInput}
};

FSAuxiliaryParameters = {
{m0Sq, {1}}
FSAuxiliaryParameterInfo = {
{m0Sq, { ParameterDimensions -> {1},
MassDimension -> 1,
Real -> True} },
{LambdaInput, { ParameterDimensions -> {1},
MassDimension -> 0,
Real -> True } }
};

EWSBOutputParameters = { \[Kappa], vS, m0Sq };
Expand Down
14 changes: 10 additions & 4 deletions model_files/VCMSSM/FlexibleSUSY.m.in
Expand Up @@ -20,10 +20,16 @@ EXTPAR = {
EWSB. The extra parameter vMSSM is currently
required to preserve the magnitude Sqrt[vd^2 + vu^2]
during the EWSB iteration. *)
FSAuxiliaryParameters = {
{TanBeta, {1}},
{MuSq, {1}},
{vMSSM, {1}}
FSAuxiliaryParameterInfo = {
{TanBeta, { ParameterDimensions -> {1},
MassDimension -> 0,
Real -> True } },
{MuSq, { ParameterDimensions -> {1},
MassDimension -> 2,
Real -> True } },
{vMSSM, { ParameterDimensions -> {1},
MassDimension -> 1,
Real -> True } }
};

(* To allow selecting a particular tree-level solution
Expand Down

0 comments on commit 56c3db9

Please sign in to comment.