Skip to content

Commit 39192f5

Browse files
EmilGormEmil Gorm Nielsenalibuild
authored
[PWGCF] fix registry naming issue (#10496)
Co-authored-by: Emil Gorm Nielsen <emilgormnielsen@cern-ch> Co-authored-by: ALICE Action Bot <alibuild@cern.ch>
1 parent 2bad958 commit 39192f5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ struct FlowGenericFramework {
386386
if (!cfgRunByRun && cfg.correctionsLoaded)
387387
return;
388388
if (!cfgAcceptance.value.empty()) {
389-
std::string runstr = (cfgRunByRun) ? "RBR/" : "";
389+
std::string runstr = (cfgRunByRun) ? "RunByRun/" : "";
390390
cfg.mAcceptance.clear();
391391
if (cfgUsePID) {
392392
cfg.mAcceptance.push_back(ccdb->getForTimeStamp<GFWWeights>(cfgAcceptance.value + runstr + "ref/", timestamp));
@@ -601,20 +601,20 @@ struct FlowGenericFramework {
601601
th3sList[run][hNUAch + pid_index]->Fill(track.phi(), track.eta(), vtxz); // charged and id'ed particle weights
602602
} else {
603603
if (withinPtRef && !pid_index)
604-
registry.fill(HIST("hPhiEtaVtxz_ref"), track.phi(), track.eta(), vtxz); // pt-subset of charged particles for ref flow
604+
registry.fill(HIST("phi_eta_vtxz_ref"), track.phi(), track.eta(), vtxz); // pt-subset of charged particles for ref flow
605605
if (withinPtPOI) {
606606
switch (pid_index) {
607607
case 0:
608-
registry.fill(HIST("hPhiEtaVtxz_ch"), track.phi(), track.eta(), vtxz); // charged particle weights
608+
registry.fill(HIST("phi_eta_vtxz_ch"), track.phi(), track.eta(), vtxz); // charged particle weights
609609
break;
610610
case 1:
611-
registry.fill(HIST("hPhiEtaVtxz_pi"), track.phi(), track.eta(), vtxz); // pion weights
611+
registry.fill(HIST("phi_eta_vtxz_pi"), track.phi(), track.eta(), vtxz); // pion weights
612612
break;
613613
case 2:
614-
registry.fill(HIST("hPhiEtaVtxz_ka"), track.phi(), track.eta(), vtxz); // kaon weights
614+
registry.fill(HIST("phi_eta_vtxz_ka"), track.phi(), track.eta(), vtxz); // kaon weights
615615
break;
616616
case 3:
617-
registry.fill(HIST("hPhiEtaVtxz_pr"), track.phi(), track.eta(), vtxz); // proton weights
617+
registry.fill(HIST("phi_eta_vtxz_pr"), track.phi(), track.eta(), vtxz); // proton weights
618618
break;
619619
}
620620
}
@@ -623,7 +623,7 @@ struct FlowGenericFramework {
623623
if (cfgRunByRun)
624624
th3sList[run][hNUAref]->Fill(track.phi(), track.eta(), vtxz);
625625
else
626-
registry.fill(HIST("hPhiEtaVtxz_ref"), track.phi(), track.eta(), vtxz);
626+
registry.fill(HIST("phi_eta_vtxz_ref"), track.phi(), track.eta(), vtxz);
627627
}
628628
return;
629629
}

0 commit comments

Comments
 (0)