Skip to content

Commit 962781e

Browse files
authored
[PWGHF] taskCharmPolarisation: Fix bin edges configuration (#14107)
1 parent 9f8b1d5 commit 962781e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGHF/D2H/Tasks/taskCharmPolarisation.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -678,8 +678,8 @@ struct HfTaskCharmPolarisation {
678678

679679
/// Event-plane related histograms
680680
if (doprocessResolEventPlane) {
681-
const AxisSpec axisCosDeltaPhi{{1000, -1., 1.}, "cos(2(#Psi_{2}(A) #minus #Psi_{2}(B)))"};
682-
const AxisSpec axisPsi{{180, 0., o2::constants::math::PI}, "#Psi_{2}"};
681+
const AxisSpec axisCosDeltaPhi{1000, -1., 1., "cos(2(#Psi_{2}(A) #minus #Psi_{2}(B)))"};
682+
const AxisSpec axisPsi{180, 0., o2::constants::math::PI, "#Psi_{2}"};
683683

684684
registry.add("resolEvPlane/hEvPlaneAngleFV0A", ";centrality;#Psi_{2} (FV0A)", {HistType::kTH2F, {thnAxisCentrality, axisPsi}});
685685
registry.add("resolEvPlane/hEvPlaneAngleFT0A", ";centrality;#Psi_{2} (FT0A)", {HistType::kTH2F, {thnAxisCentrality, axisPsi}});

0 commit comments

Comments
 (0)