We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d93d3b6 commit 6bfb83eCopy full SHA for 6bfb83e
PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx
@@ -570,7 +570,8 @@ struct FlowGenericFramework {
570
vtxz = collision.posZ();
571
float zRes = std::sqrt(collision.covZZ());
572
float minZRes = 0.25;
573
- if (zRes > minZRes && collision.numContrib() < 20)
+ int minNContrib = 20;
574
+ if (zRes > minZRes && collision.numContrib() < minNContrib)
575
vtxz = -999;
576
}
577
// auto multV0A = collision.multFV0A();
0 commit comments