Skip to content

Commit 30456b8

Browse files
authored
fix
1 parent b3df807 commit 30456b8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Common/Tasks/centralityQa.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,8 @@ struct CentralityQa {
450450
histos.fill(HIST("hBCSelection"), 3); // FV0OrA
451451
}
452452

453-
if (bcsel.selectVertexZwithT0 && bcsel.vertexZwithT0 < 100.0f) {
453+
const float largeVertexZ = 100.0f;
454+
if (bcsel.selectVertexZwithT0 && bcsel.vertexZwithT0 < largeVertexZ) {
454455
if (bc.has_ft0()) {
455456
const auto& ft0 = bc.ft0();
456457
if (!ft0.isValidTime()) {

0 commit comments

Comments
 (0)