We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c794502 commit 52d3c48Copy full SHA for 52d3c48
1 file changed
madgraph/iolibs/template_files/madmatrix/umami.cc
@@ -465,6 +465,10 @@ extern "C"
465
color_random[i_event] = random_color_in ? random_color_in[i_event + offset] : 0.5;
466
diagram_random[i_event] = random_diagram_in ? random_diagram_in[i_event + offset] : 0.5;
467
g_s[i_event] = alpha_s_in ? sqrt( 4 * M_PI * alpha_s_in[i_event + offset] ) : 1.2177157847767195;
468
+ flavor_indices[i_event] = flavor_indices_in ? flavor_indices_in[i_event + offset] : 0;
469
+ }
470
+ for ( std::size_t i_event = count; i_event < rounded_count; ++i_event ) {
471
+ flavor_indices[i_event] = 0;
472
}
473
computeDependentCouplings( g_s.data(), couplings.data(), rounded_count );
474
0 commit comments