Skip to content

Commit fd807d0

Browse files
authored
[PWGEM,PWGEM-36] Fix flow reso task (#16004)
1 parent 3610448 commit fd807d0

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

PWGEM/PhotonMeson/Tasks/taskFlowReso.cxx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,13 @@ struct TaskFlowReso {
164164
registry.add("spReso/hSpResoFT0cTPCtot", "hSpResoFT0cTPCtot; centrality; Q_{FT0c} #bullet Q_{TPCtot}", HistType::kTProfile, {thnAxisCent});
165165
registry.add("spReso/hSpResoFT0aTPCpos", "hSpResoFT0aTPCpos; centrality; Q_{FT0a} #bullet Q_{TPCpos}", HistType::kTProfile, {thnAxisCent});
166166
registry.add("spReso/hSpResoFT0aTPCneg", "hSpResoFT0aTPCneg; centrality; Q_{FT0a} #bullet Q_{TPCneg}", HistType::kTProfile, {thnAxisCent});
167-
registry.add("spReso/hSpResoFT0aTPCtot", "hSpResoFT0aTPCtot; centrality; Q_{FT0m} #bullet Q_{TPCtot}", HistType::kTProfile, {thnAxisCent});
167+
registry.add("spReso/hSpResoFT0aTPCtot", "hSpResoFT0aTPCtot; centrality; Q_{FT0a} #bullet Q_{TPCtot}", HistType::kTProfile, {thnAxisCent});
168168
registry.add("spReso/hSpResoFT0mTPCpos", "hSpResoFT0mTPCpos; centrality; Q_{FT0m} #bullet Q_{TPCpos}", HistType::kTProfile, {thnAxisCent});
169169
registry.add("spReso/hSpResoFT0mTPCneg", "hSpResoFT0mTPCneg; centrality; Q_{FT0m} #bullet Q_{TPCneg}", HistType::kTProfile, {thnAxisCent});
170170
registry.add("spReso/hSpResoFT0mTPCtot", "hSpResoFT0mTPCtot; centrality; Q_{FT0m} #bullet Q_{TPCtot}", HistType::kTProfile, {thnAxisCent});
171171
registry.add("spReso/hSpResoTPCposTPCneg", "hSpResoTPCposTPCneg; centrality; Q_{TPCpos} #bullet Q_{TPCneg}", HistType::kTProfile, {thnAxisCent});
172172
registry.add("spReso/hSpResoFV0aFT0c", "hSpResoFV0aFT0c; centrality; Q_{FV0a} #bullet Q_{FT0c}", HistType::kTProfile, {thnAxisCent});
173+
registry.add("spReso/hSpResoFV0aFT0a", "hSpResoFV0aFT0a; centrality; Q_{FV0a} #bullet Q_{FT0a}", HistType::kTProfile, {thnAxisCent});
173174
registry.add("spReso/hSpResoFV0aTPCpos", "hSpResoFV0aTPCpos; centrality; Q_{FV0a} #bullet Q_{TPCpos}", HistType::kTProfile, {thnAxisCent});
174175
registry.add("spReso/hSpResoFV0aTPCneg", "hSpResoFV0aTPCneg; centrality; Q_{FV0a} #bullet Q_{TPCneg}", HistType::kTProfile, {thnAxisCent});
175176
registry.add("spReso/hSpResoFV0aTPCtot", "hSpResoFV0aTPCtot; centrality; Q_{FV0a} #bullet Q_{TPCtot}", HistType::kTProfile, {thnAxisCent});
@@ -451,6 +452,7 @@ struct TaskFlowReso {
451452
registry.fill(HIST("spReso/hSpResoFT0mTPCtot"), centrality, xQVecFT0m * xQVecBTot + yQVecFT0m * yQVecBTot);
452453
registry.fill(HIST("spReso/hSpResoTPCposTPCneg"), centrality, xQVecBPos * xQVecBNeg + yQVecBPos * yQVecBNeg);
453454
registry.fill(HIST("spReso/hSpResoFV0aFT0c"), centrality, xQVecFV0a * xQVecFT0c + yQVecFV0a * yQVecFT0c);
455+
registry.fill(HIST("spReso/hSpResoFV0aFT0a"), centrality, xQVecFV0a * xQVecFT0a + yQVecFV0a * yQVecFT0a);
454456
registry.fill(HIST("spReso/hSpResoFV0aTPCpos"), centrality, xQVecFV0a * xQVecBPos + yQVecFV0a * yQVecBPos);
455457
registry.fill(HIST("spReso/hSpResoFV0aTPCneg"), centrality, xQVecFV0a * xQVecBNeg + yQVecFV0a * yQVecBNeg);
456458
registry.fill(HIST("spReso/hSpResoFV0aTPCtot"), centrality, xQVecFV0a * xQVecBTot + yQVecFV0a * yQVecBTot);
@@ -466,8 +468,8 @@ struct TaskFlowReso {
466468
float epFV0a = epHelper.GetEventPlane(xQVecFV0a, yQVecFV0a, harmonic);
467469

468470
registry.fill(HIST("hEventPlaneAngleFT0M"), centrality, epFT0m);
469-
registry.fill(HIST("hEventPlaneAngleFT0A"), centrality, epFT0c);
470-
registry.fill(HIST("hEventPlaneAngleFT0C"), centrality, epFT0a);
471+
registry.fill(HIST("hEventPlaneAngleFT0A"), centrality, epFT0a);
472+
registry.fill(HIST("hEventPlaneAngleFT0C"), centrality, epFT0c);
471473
registry.fill(HIST("hEventPlaneAngleTPCpos"), centrality, epBPoss);
472474
registry.fill(HIST("hEventPlaneAngleTPCneg"), centrality, epBNegs);
473475
registry.fill(HIST("hEventPlaneAngleFV0A"), centrality, epFV0a);

0 commit comments

Comments
 (0)