Skip to content

Commit 440e578

Browse files
authored
Fix typos
1 parent f3c5236 commit 440e578

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGLF/TableProducer/Nuspex/ebyeMaker.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ struct EbyeMaker {
194194
const AxisSpec zVtxAxis{100, -20.f, 20.f, "vertex z in cm"};
195195
const AxisSpec nTpcAxis{160, 0, 160, "N TPC"};
196196
const AxisSpec dcaAxis{2000, -1., 1., "DCA in cm"};
197-
const AxisSpec phiAxis(650, 0, 6.5, "#phi (rad)");
198-
const AxisSpec signMomAxis(1e3, -5.f, 5.f, "#it{p}_{T}/#it{Z} (GeV/#it{c})");
197+
const AxisSpec phiAxis{650, 0, 6.5, "#phi (rad)"};
198+
const AxisSpec signMomAxis{1e3, -5.f, 5.f, "#it{p}_{T}/#it{Z} (GeV/#it{c})"};
199199

200200
// binning of (anti)lambda mass QA histograms
201201
ConfigurableAxis massLambdaAxis{"massLambdaAxis", {400, o2::constants::physics::MassLambda0 - 0.03f, o2::constants::physics::MassLambda0 + 0.03f}, "binning for the lambda invariant-mass"};
@@ -537,7 +537,7 @@ struct EbyeMaker {
537537
histos.add<TH2>("QA/tpcCRvsCls", ";#it{N}_{TPCCR};#it{N}_{TPCcls}", HistType::kTH2F, {nTpcAxis, nTpcAxis});
538538
histos.add<TH2>("QA/dcaxyVsPt", ";#it{p}_{T} (GeV/#it{c});DCA_{#it{xy}} (cm)", HistType::kTH2F, {momAxis, dcaAxis});
539539
histos.add<TH2>("QA/dcazVsPt", ";#it{p}_{T} (GeV/#it{c});DCA_{#it{z}} (cm)", HistType::kTH2F, {momAxis, dcaAxis});
540-
histos.add<TH3>("QA/phiVsPtVsCR", "#it{N}^{TPC}_{CR};'it{p}_{T} (GeV/#it{c});#phi (rad);", HistType::kTH3F, {nTpcAxis, signMomAxis, phiAxis});
540+
histos.add<TH3>("QA/phiVsPtVsCR", ";#it{N}^{TPC}_{CR};#it{p}_{T} (GeV/#it{c});#phi (rad)", HistType::kTH3F, {nTpcAxis, signMomAxis, phiAxis});
541541

542542
ptMin = std::array<float, kNpart>{antipPtMin, antidPtMin};
543543
ptMax = std::array<float, kNpart>{antipPtMax, antidPtMax};

0 commit comments

Comments
 (0)