| 1 | (**********************************************************)
|
|---|
| 2 | (* Extension of the 2HDM to include beta *)
|
|---|
| 3 | (* This parameter has no influence unless typeI or typeII *)
|
|---|
| 4 | (* restriction are used *)
|
|---|
| 5 | (**********************************************************)
|
|---|
| 6 |
|
|---|
| 7 | Get["2HDM.fr"];
|
|---|
| 8 |
|
|---|
| 9 | M$ParametersBetaBasis = {
|
|---|
| 10 |
|
|---|
| 11 | tanbeta == {
|
|---|
| 12 | ParameterType -> External,
|
|---|
| 13 | Value -> 1.53748,
|
|---|
| 14 | Description -> "vev ratio"},
|
|---|
| 15 |
|
|---|
| 16 | sinbma == {
|
|---|
| 17 | ParameterType -> External,
|
|---|
| 18 | Value -> 0.1,
|
|---|
| 19 | Description -> "sin of beta minus alpha"}
|
|---|
| 20 |
|
|---|
| 21 | };
|
|---|
| 22 |
|
|---|
| 23 | M$Parameters = Join[M$Parameters, M$ParametersBetaBasis];
|
|---|