Decays
[+]
To activate the output of decays, in the main.c of the specific model, add to the section of modules
#define DECAYS
/* Calculate decay widths and branchings */
and at the end of the main.c program:
ifdef DECAYS
{
txtList L;
int dim;
double width,br;
char * pname;
printf("\n Calculation of particle decays\n");
pname = "H";
width=pWidth(pname,&L,&dim);
printf("%s->%d*x : total width=%E \n and Branchings:\n",pname,dim,width);
printTxtList(L,stdout);
}
#endif