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 2b70ea4 commit fb16e59Copy full SHA for fb16e59
PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx
@@ -249,6 +249,7 @@ struct JFlucEfficiencyTask {
249
if (centrality < cfgCentMin || centrality > cfgCentMax) {
250
return;
251
}
252
+ registry.fill(HIST("hZVertexReco"), cfCollision.posZ(), centrality);
253
254
for (const auto& track : cfTracks) {
255
registry.fill(HIST("hPtRec"), track.pt(), centrality);
@@ -342,6 +343,7 @@ struct JFlucEfficiencyTask {
342
343
344
345
346
+ registry.fill(HIST("hZVertexReco"), collision.posZ(), centrality);
347
for (const auto& track : tracks) {
348
// pT and eta selections
349
if (track.pt() < cfgPtMin || track.pt() > cfgPtMax || track.eta() < cfgEtaMin || track.eta() > cfgEtaMax) {
0 commit comments