Skip to content

Commit

Permalink
protection for missing calibration
Browse files Browse the repository at this point in the history
  • Loading branch information
maciacco authored Dec 20, 2024
1 parent 9a7356c commit fbab339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PWGLF/TableProducer/Nuspex/ebyeMaker.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@ struct ebyeMaker {
for (auto& classId : classIds) {
if (bc.triggerMask() & BIT(classId)) {
trigger |= 0x2;
cV0M = cV0M * 100.;
cV0M = cV0M < 104.f ? cV0M * 100. : cV0M;
break;
}
}
Expand Down

0 comments on commit fbab339

Please sign in to comment.