Skip to content

Commit a3001ce

Browse files
choich08365Changhwan Choi
andauthored
[PWGJE] Updated GNN b-jet analysis histograms, applied proper event selections (AliceO2Group#13418)
Co-authored-by: Changhwan Choi <[email protected]>
1 parent a5ba625 commit a3001ce

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)