Skip to content

Commit efa1dc1

Browse files
author
Changhwan Choi
committed
Updated GNN b-jet analysis histograms, applied proper event selections
1 parent d0e2559 commit efa1dc1

File tree

2 files changed

+179
-57
lines changed

2 files changed

+179
-57
lines changed

PWGJE/TableProducer/jetTaggerHF.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,10 +280,10 @@ struct JetTaggerHFTask {
280280
if (jet.pt() >= jetpTMin) {
281281
if (scoreML[jet.globalIndex()] < dbMin) {
282282
dbRange = 0.5; // underflow
283-
} else if (scoreML[jet.globalIndex()] >= dbMax) {
284-
dbRange = 2.5; // overflow
285-
} else {
283+
} else if (scoreML[jet.globalIndex()] < dbMax) {
286284
dbRange = 1.5; // in range
285+
} else {
286+
dbRange = 2.5; // overflow
287287
}
288288
registry.fill(HIST("h2_count_db"), 3.5, dbRange); // incl jet
289289
if constexpr (isMC) {

0 commit comments

Comments
 (0)