Skip to content

Commit

Permalink
Common: easier indexing to avoid HY warning (#7624)
Browse files Browse the repository at this point in the history
* Common: easier indexing to avoid HY warning

* Please consider the following formatting changes (#7625)

---------

Co-authored-by: ALICE Builder <[email protected]>
  • Loading branch information
ddobrigk and alibuild authored Sep 9, 2024
1 parent 40f8692 commit 056622e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Common/DataModel/Multiplicity.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ DECLARE_SOA_TABLE(PVMults, "AOD", "PVMULT", //! Multiplicity from the PV contrib
mult::IsInelGt1<mult::MultNTracksPVeta1>);
using BarrelMults = soa::Join<TrackletMults, TPCMults, PVMults>;
using Mults = soa::Join<BarrelMults, FV0Mults, FT0Mults, FDDMults, ZDCMults>;
using FT0Mult = FT0Mults::iterator;
using Mult = Mults::iterator;

DECLARE_SOA_TABLE(MultsExtra, "AOD", "MULTEXTRA", //!
Expand Down Expand Up @@ -218,14 +219,14 @@ DECLARE_SOA_INDEX_COLUMN(MultBC, multBC);
}
namespace multBC
{
DECLARE_SOA_INDEX_COLUMN(Mult, mult);
DECLARE_SOA_INDEX_COLUMN(FT0Mult, ft0Mult);
}

// for QA purposes
DECLARE_SOA_TABLE(Mults2BC, "AOD", "MULTS2BC", //! Relate mult -> BC
o2::soa::Index<>, mult::MultBCId);
DECLARE_SOA_TABLE(BC2Mults, "AOD", "BC2MULTS", //! Relate BC -> mult
o2::soa::Index<>, multBC::MultId);
o2::soa::Index<>, multBC::FT0MultId);

} // namespace o2::aod

Expand Down

0 comments on commit 056622e

Please sign in to comment.