Skip to content

Commit b1e1d99

Browse files
committed
Fix filling of ValueMap for DeepJet scores
1 parent 515dff4 commit b1e1d99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RecoBTag/ONNXRuntime/plugins/DeepFlavourONNXJetTagsProducer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ void DeepFlavourONNXJetTagsProducer::produce(edm::Event& iEvent, const edm::Even
153153
for (std::size_t flav_n = 0; flav_n < flav_names_.size(); flav_n++) {
154154
(*(output_tags[flav_n]))[jet_ref] = outputs[i_output];
155155
if (produceValueMap_) {
156-
output_scores[flav_n][jet_n] = outputs[flav_n];
156+
output_scores[flav_n][jet_n] = outputs[i_output];
157157
}
158158
++i_output;
159159
}

0 commit comments

Comments
 (0)