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 3d8cf10 commit 9db6d76Copy full SHA for 9db6d76
Tutorials/PWGCF/EventPlane/src/spectatorPlaneTutorial.cxx
@@ -152,7 +152,10 @@ struct SpectatorPlaneTutorial {
152
float centrality = collision.centFT0C();
153
registry.fill(HIST("hCentrality"), centrality);
154
155
- if (centrality > 80 || centrality < 0)
+ float centMin = 0;
156
+ float centMax = 80;
157
+
158
+ if (centrality > centMax || centrality < centMin)
159
return;
160
161
if (collision.isSelected() == false)
0 commit comments