You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
registry.add("QAPhi/hRapidity", "Rapidity distribution of #phi candidates", kTH1F, {rapidityaxis});
282
282
registry.add("QAPhi/hEta", "Pseudorapidity distribution of #phi candidates", kTH1F, {etaaxis});
283
283
284
-
registry.add("QAPhi/hdPhi", "Azimuthal distribution of #phi candidates", kTH1F, {{100, -2 * TMath::Pi(), 2 * TMath::Pi()}});
284
+
registry.add("QAPhi/hdPhi", "Azimuthal distribution of #phi candidates", kTH1F, {{100, -o2::constants::math::TwoPI, o2::constants::math::TwoPI}});
285
285
auto hdPhi = registry.get<TH1>(HIST("QAPhi/hdPhi"));
286
286
hdPhi->GetXaxis()->SetTitle("#phi (rad)");
287
287
288
-
registry.add("QAPhi/h2dPhiPt", "Azimuthal distribution of #Delta#phi candidates vs p_{T}", kTH2F, {ptaxis, {100, -2 * TMath::Pi(), 2 * TMath::Pi()}});
288
+
registry.add("QAPhi/h2dPhiPt", "Azimuthal distribution of #Delta#phi candidates vs p_{T}", kTH2F, {ptaxis, {100, -o2::constants::math::TwoPI, o2::constants::math::TwoPI}});
289
289
auto h2dPhiPt = registry.get<TH2>(HIST("QAPhi/h2dPhiPt"));
registry.add("QAPhi/hTheta", "Polar distribution of #phi candidates", kTH1F, {{100, 0, TMath::Pi()}});
293
+
registry.add("QAPhi/hTheta", "Polar distribution of #phi candidates", kTH1F, {{100, 0.0f, o2::constants::math::PI}});
294
294
auto hTheta = registry.get<TH1>(HIST("QAPhi/hTheta"));
295
295
hTheta->GetXaxis()->SetTitle("#theta (rad)");
296
296
297
-
registry.add("QAPhi/h2dThetaPt", "Polar distribution of #phi candidates vs p_{T}", kTH2F, {{12, 0, 12}, {100, -TMath::Pi(), TMath::Pi()}});
297
+
registry.add("QAPhi/h2dThetaPt", "Polar distribution of #phi candidates vs p_{T}", kTH2F, {{12, 0, 12}, {100, -o2::constants::math::PI, o2::constants::math::PI}});
298
298
auto h2dThetaPt = registry.get<TH2>(HIST("QAPhi/h2dThetaPt"));
0 commit comments