Skip to content

Commit d05bda3

Browse files
authored
[PWGLF] fix registry name (#14138)
1 parent fcf5d4f commit d05bda3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

PWGLF/Tasks/QC/lfITSTPCMatchingSecondaryTracksQA.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -365,27 +365,27 @@ struct LfITSTPCMatchingSecondaryTracksQA {
365365
// Event Selection
366366
if (!collision.sel8() || std::fabs(collision.posZ()) > zVtx)
367367
continue;
368-
registryData.fill(HIST("number_of_events_mc"), 1.5);
368+
registryMC.fill(HIST("number_of_events_mc"), 1.5);
369369

370370
// Reject events near the ITS Read-Out Frame border
371371
if (!collision.selection_bit(o2::aod::evsel::kNoITSROFrameBorder))
372372
continue;
373-
registryData.fill(HIST("number_of_events_mc"), 2.5);
373+
registryMC.fill(HIST("number_of_events_mc"), 2.5);
374374

375375
// Reject events at the Time Frame border
376376
if (!collision.selection_bit(o2::aod::evsel::kNoTimeFrameBorder))
377377
continue;
378-
registryData.fill(HIST("number_of_events_mc"), 3.5);
378+
registryMC.fill(HIST("number_of_events_mc"), 3.5);
379379

380380
// Reject events with same-bunch pileup
381381
if (!collision.selection_bit(o2::aod::evsel::kNoSameBunchPileup))
382382
continue;
383-
registryData.fill(HIST("number_of_events_mc"), 4.5);
383+
registryMC.fill(HIST("number_of_events_mc"), 4.5);
384384

385385
// Require consistent FT0 vs PV z-vertex
386386
if (!collision.selection_bit(o2::aod::evsel::kIsGoodZvtxFT0vsPV))
387387
continue;
388-
registryData.fill(HIST("number_of_events_mc"), 5.5);
388+
registryMC.fill(HIST("number_of_events_mc"), 5.5);
389389

390390
auto v0sPerColl = fullV0s.sliceBy(perCollisionV0, collision.globalIndex());
391391
auto tracksPerColl = mcTracks.sliceBy(perCollisionTrk, collision.globalIndex());

0 commit comments

Comments
 (0)