Skip to content

Commit 2ff1bf6

Browse files
authored
Update HiggsMakeDecay_tool.cc
Simplified the form factor calculation (with some speed improvement)
1 parent 442253e commit 2ff1bf6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sbncode/EventGenerator/MeVPrtl/Tools/Higgs/HiggsMakeDecay_tool.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ double PionPartialWidth(double pion_mass, double higs_mass, double mixing, bool
138138
// New, improved form factor based on the plot in arXiv:1909.11670v4
139139
// This form factor is significnatly different than in older versions
140140
// The expression is a fit to the Fig. 1 left panel in arXiv:1909.11670v4
141-
form_factor = pow(0.289 * pow(higs_mass - 2 * Constants::Instance().pizero_mass,1.5),0.5);
141+
form_factor = 0.537569 * pow(higs_mass - 2 * Constants::Instance().pizero_mass,0.75);
142142
}
143143
else {
144144
// Old form factor

0 commit comments

Comments
 (0)