Hi Florian,
Thanks for the previous replies. I've gotten over those errors but I have another problem with a FermionField. I've been trying to add in right-handed neutrinos as in the Scotogenic Model example in
http://arxiv.org/pdf/1507.06349v2.pdf. However I only want one generation and not 3. So far I've put in:
Code: Select all
FermionFields[[6]] = { n, 1, conj[nR], 0, 1, 1, -1};
I did not add anything in [EWSB][MatterSector] and
Code: Select all
[EWSB][DiracSpinors]
{ .... ,
Fn -> {nR, conj[nR]} , (*so that it is majorana*)
.... };
Thats all i did for the model file.
I added in particles.m
Code: Select all
WeylFermionAndIndermediate = {
{n , {LaTeX ->"n"}},
{nR,{LaTeX->"nR"}}
};
and in
Code: Select all
ParticleDefinitions[EWSB]={
{Fn, { Description -> "Right-Handed Neutrinos",
LaTeX ->"\\nu_R",
PDG ->{100006},
FeynArtsNr -> 100006,
ElectricCharge->0,
Mass -> LesHouches,
OutputName ->"Fn" }},
};
When I do MakeAll["Model"] everything works until it reaches Generate LaTeX files when it throws warnings Part::partd: Part specification.
Did I forget anything important that may be causing this error or do something completely wrong? I was not able to find a model file in the examples that did something similar.
Best,
Brad