Skip to content

Commit 6b09cf5

Browse files
authored
Update HiggsMakeDecay_tool.cc
Fixed an error with the new form factor implementation
1 parent 8bb0792 commit 6b09cf5

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) {
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 = 0.289 * pow(higs_mass - 2 * Constants::Instance().pizero_mass,1.5);
141+
form_factor = pow(0.289 * pow(higs_mass - 2 * Constants::Instance().pizero_mass,1.5),0.5);
142142
}
143143
else {
144144
// Old form factor

0 commit comments

Comments
 (0)