@@ -163,8 +163,8 @@ struct flowDirectedFlowTask {
163163 histos.add (" hQxCvscent" , " Qx C vs centrality" , kTH2F , {{centAxis}, {qAxis}});
164164 histos.add (" hQyCvscent" , " Qy C vs centrality" , kTH2F , {{centAxis}, {qAxis}});
165165
166- histos.add (" hpResCosAC" , " cos(#Psi_{A}-#Psi_{C}) vs centrality" , kTH2F , {{centAxis}, {resAxis}});
167- histos.add (" hpResDotAC" , " Q_{A}#upoint Q_{C} vs centrality" , kTH2F , {{centAxis}, {resAxis}});
166+ histos.add (" hpResCosAC" , " cos(#Psi_{A}-#Psi_{C}) vs centrality" , kTH3F , {{centAxis}, {resAxis}, {q1Axis }});
167+ histos.add (" hpResDotAC" , " Q_{A}#upoint Q_{C} vs centrality" , kTH3F , {{centAxis}, {resAxis}, {q1Axis }});
168168 histos.add (" hpQxAQxC" , " QxA QxC" , kTH2F , {{centAxis}, {resAxis}});
169169 histos.add (" hpQyAQyC" , " QyA QyC" , kTH2F , {{centAxis}, {resAxis}});
170170 histos.add (" hpQxAQyC" , " QxA QyC" , kTH2F , {{centAxis}, {resAxis}});
@@ -524,8 +524,8 @@ struct flowDirectedFlowTask {
524524 float dotAC = qxA * qxC + qyA * qyC;
525525 float resDot = dotAC / (magA * magC);
526526
527- histos.fill (HIST (" hpResCosAC" ), centrality, std::cos (psiA - psiC));
528- histos.fill (HIST (" hpResDotAC" ), centrality, resDot);
527+ histos.fill (HIST (" hpResCosAC" ), centrality, std::cos (psiA - psiC), q1 );
528+ histos.fill (HIST (" hpResDotAC" ), centrality, resDot, q1 );
529529 histos.fill (HIST (" hpQxAQxC" ), centrality, qxA * qxC);
530530 histos.fill (HIST (" hpQyAQyC" ), centrality, qyA * qyC);
531531 histos.fill (HIST (" hpQxAQyC" ), centrality, qxA * qyC);
0 commit comments