Skip to content

Commit fb16e59

Browse files
authored
[PWGCF] jFlucEfficiencyTask - Add QA histo (#10308)
1 parent 2b70ea4 commit fb16e59

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

PWGCF/JCorran/Tasks/jFlucEfficiencyTask.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,7 @@ struct JFlucEfficiencyTask {
249249
if (centrality < cfgCentMin || centrality > cfgCentMax) {
250250
return;
251251
}
252+
registry.fill(HIST("hZVertexReco"), cfCollision.posZ(), centrality);
252253

253254
for (const auto& track : cfTracks) {
254255
registry.fill(HIST("hPtRec"), track.pt(), centrality);
@@ -342,6 +343,7 @@ struct JFlucEfficiencyTask {
342343
if (centrality < cfgCentMin || centrality > cfgCentMax) {
343344
return;
344345
}
346+
registry.fill(HIST("hZVertexReco"), collision.posZ(), centrality);
345347
for (const auto& track : tracks) {
346348
// pT and eta selections
347349
if (track.pt() < cfgPtMin || track.pt() > cfgPtMax || track.eta() < cfgEtaMin || track.eta() > cfgEtaMax) {

0 commit comments

Comments
 (0)