Skip to content

Commit a3a86d9

Browse files
committed
fix
1 parent 06067b8 commit a3a86d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ struct jEPFlowAnalysis {
279279
epFlowHistograms.fill(HIST("EpResQvecRefARefBxx"), i + 2, cent, qx_shifted[1] * qx_shifted[2] + qy_shifted[1] * qy_shifted[2]);
280280
epFlowHistograms.fill(HIST("EpResQvecRefARefBxy"), i + 2, cent, qx_shifted[2] * qy_shifted[1] - qx_shifted[1] * qy_shifted[2]);
281281

282-
float q2 = std::sqrt(std::pow(qx_shifted[0], 2) + std::pos(qy_shifted[0], 2)) / std::sqrt(coll.qvecAmp()[detId]);
282+
float q2 = std::sqrt(std::pow(qx_shifted[0], 2) + std::pow(qy_shifted[0], 2)) / std::sqrt(coll.qvecAmp()[detId]);
283283
epFlowHistograms.fill(HIST("hCentQ2"), i + 2, cent, q2);
284284

285285
for (const auto& track : tracks) {

0 commit comments

Comments
 (0)