| 1 | (* ********************************************************* *)
|
|---|
| 2 | (* ***** ***** *)
|
|---|
| 3 | (* ***** FeynRules model file: SM + colored scalars ***** *)
|
|---|
| 4 | (* ***** Author: B. Fuks ***** *)
|
|---|
| 5 | (* ***** ***** *)
|
|---|
| 6 | (* ********************************************************* *)
|
|---|
| 7 |
|
|---|
| 8 | (* ************************** *)
|
|---|
| 9 | (* ***** Information ***** *)
|
|---|
| 10 | (* ************************** *)
|
|---|
| 11 | M$ModelName = "ColoredScalars";
|
|---|
| 12 | M$Information = {
|
|---|
| 13 | Authors -> {"Benjamin Fuks"},
|
|---|
| 14 | Emails -> {"benjamin.fuks@iphc.cnrs.fr"},
|
|---|
| 15 | Institutions -> {"IPHC Strasbourg / University of Strasbourg"},
|
|---|
| 16 | Date -> "11.07.14",
|
|---|
| 17 | Version -> "1.0",
|
|---|
| 18 | References -> "C. Degrande, B. Fuks, V. Hirschi, J. Proudom and H.S. Shao, arXiv:1412.XXXX [hep-ph]"
|
|---|
| 19 | };
|
|---|
| 20 |
|
|---|
| 21 | (* Change log *)
|
|---|
| 22 | (* 11.07.2014 - v1.0 - version 1 of the model *)
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 | (* ************************** *)
|
|---|
| 26 | (* ***** Orders ***** *)
|
|---|
| 27 | (* ************************** *)
|
|---|
| 28 | M$InteractionOrderHierarchy = { {QCD, 1}, {QED, 2}, {NP,1} };
|
|---|
| 29 | M$InteractionOrderLimit = { {QCD, 99}, {QED, 99}, {NP,1} };
|
|---|
| 30 |
|
|---|
| 31 | (* ************************** *)
|
|---|
| 32 | (* ***** Fields ***** *)
|
|---|
| 33 | (* ************************** *)
|
|---|
| 34 | M$ClassesDescription = {
|
|---|
| 35 | S[5] == {
|
|---|
| 36 | ClassName -> sig3,
|
|---|
| 37 | SelfConjugate -> False,
|
|---|
| 38 | Indices -> {Index[Colour]},
|
|---|
| 39 | Mass -> {m3,400},
|
|---|
| 40 | Width -> {w3,10},
|
|---|
| 41 | ParticleName -> "sig3",
|
|---|
| 42 | AntiParticleName -> "sig3~",
|
|---|
| 43 | PDG -> 9000002,
|
|---|
| 44 | PropagatorLabel -> "sig3",
|
|---|
| 45 | PropagatorType -> ScalarDash,
|
|---|
| 46 | PropagatorArrow -> Forward,
|
|---|
| 47 | QuantumNumbers -> {Q -> 2/3}
|
|---|
| 48 | },
|
|---|
| 49 |
|
|---|
| 50 | F[16] == {
|
|---|
| 51 | ClassName -> chi,
|
|---|
| 52 | SelfConjugate -> True,
|
|---|
| 53 | Mass -> {mchi,50},
|
|---|
| 54 | Width -> 0,
|
|---|
| 55 | ParticleName -> "chi",
|
|---|
| 56 | PDG -> 1000022,
|
|---|
| 57 | PropagatorLabel -> "chi",
|
|---|
| 58 | PropagatorType -> Straight,
|
|---|
| 59 | PropagatorArrow -> None
|
|---|
| 60 | }
|
|---|
| 61 | };
|
|---|
| 62 |
|
|---|
| 63 | (* ************************** *)
|
|---|
| 64 | (* ***** Parameters ***** *)
|
|---|
| 65 | (* ************************** *)
|
|---|
| 66 | M$Parameters = {
|
|---|
| 67 | gtL == {
|
|---|
| 68 | TeX -> Superscript[OverTilde[g],L],
|
|---|
| 69 | ParameterType -> External,
|
|---|
| 70 | ComplexParameter -> False,
|
|---|
| 71 | BlockName -> NP3GT,
|
|---|
| 72 | Value -> 0.25,
|
|---|
| 73 | InteractionOrder -> {NP,1},
|
|---|
| 74 | Description -> "Left-handed neutralino-stop-top coupling"},
|
|---|
| 75 | gtR == {
|
|---|
| 76 | TeX -> Superscript[OverTilde[g],R],
|
|---|
| 77 | ParameterType -> External,
|
|---|
| 78 | ComplexParameter -> False,
|
|---|
| 79 | BlockName -> NP3GT,
|
|---|
| 80 | Value -> 0.06,
|
|---|
| 81 | InteractionOrder -> {NP,1},
|
|---|
| 82 | Description -> "Right-handed neutralino-stop-top coupling"}
|
|---|
| 83 | };
|
|---|
| 84 |
|
|---|
| 85 | (* ************************** *)
|
|---|
| 86 | (* ***** Lagrangian ***** *)
|
|---|
| 87 | (* ************************** *)
|
|---|
| 88 | L1 := DC[sig3bar[aa],mu] DC[sig3[aa],mu] - m3^2 sig3bar[aa] sig3[aa];
|
|---|
| 89 |
|
|---|
| 90 | L3:= i/2 chibar.Ga[mu].del[chi,mu] - 1/2 mchi chibar.chi +
|
|---|
| 91 | sig3[cc] tbar[sp1,cc].chi[sp2] (gtL ProjM[sp1,sp2] + gtR ProjP[sp1,sp2]);
|
|---|
| 92 |
|
|---|
| 93 | LagNP := L1 + L3 + HC[L3];
|
|---|