We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3df807 commit 30456b8Copy full SHA for 30456b8
1 file changed
Common/Tasks/centralityQa.cxx
@@ -450,7 +450,8 @@ struct CentralityQa {
450
histos.fill(HIST("hBCSelection"), 3); // FV0OrA
451
}
452
453
- if (bcsel.selectVertexZwithT0 && bcsel.vertexZwithT0 < 100.0f) {
+ const float largeVertexZ = 100.0f;
454
+ if (bcsel.selectVertexZwithT0 && bcsel.vertexZwithT0 < largeVertexZ) {
455
if (bc.has_ft0()) {
456
const auto& ft0 = bc.ft0();
457
if (!ft0.isValidTime()) {
0 commit comments