Skip to content

Commit 5e61f71

Browse files
committed
fix: wrap conf macro argument in parentheses in pairHistManager
1 parent 5d153f3 commit 5e61f71

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

PWGCF/Femto/Core/pairHistManager.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -385,9 +385,9 @@ constexpr std::array<histmanager::HistInfo<PairHist>, kPairHistogramLast>
385385
{kTrueMinvVsMinv, {(conf).massInv, (conf).massInv}}, \
386386
{kTrueMultVsMult, {(conf).multiplicity, (conf).multiplicity}}, \
387387
{kTrueCentVsCent, {(conf).centrality, (conf).centrality}}, \
388-
{kTrueQoutVsQout, {conf.qout, conf.qout}}, \
389-
{kTrueQsideVsQside, {conf.qside, conf.qside}}, \
390-
{kTrueQlongVsQlong, {conf.qlong, conf.qlong}},
388+
{kTrueQoutVsQout, {(conf).qout, (conf).qout}}, \
389+
{kTrueQsideVsQside, {(conf).qside, (conf).qside}}, \
390+
{kTrueQlongVsQlong, {(conf).qlong, (conf).qlong}},
391391

392392
// pure mc-truth pair (no reco counterpart) — reuses the same analysis binning,
393393
// since there is no separate "true" axis (conf)iguration: the truth value IS the

0 commit comments

Comments
 (0)