Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MegaLinter] Apply linters automatic fixes to #4241 #211

Merged
merged 2 commits into from
Jan 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions PWGLF/DataModel/LFStrangenessTables.h
Original file line number Diff line number Diff line change
Expand Up @@ -478,10 +478,10 @@ using V0MCData = V0MCDatas::iterator;
// definitions of indices for interlink tables
namespace v0data
{
DECLARE_SOA_INDEX_COLUMN(V0Data, v0Data); //! Index to V0Data entry
DECLARE_SOA_INDEX_COLUMN(V0Data, v0Data); //! Index to V0Data entry
DECLARE_SOA_INDEX_COLUMN(V0fCData, v0fCData); //! Index to V0Data entry
DECLARE_SOA_INDEX_COLUMN_FULL(V0MC, v0MC, int, V0MCCores, "_MC"); //!
}
} // namespace v0data

DECLARE_SOA_TABLE(V0DataLink, "AOD", "V0DATALINK", //! Joinable table with V0s which links to V0Data which is not produced for all entries
o2::soa::Index<>, v0data::V0DataId, v0data::V0fCDataId);
Expand Down Expand Up @@ -930,10 +930,10 @@ using CascDataExt = CascDatas;

namespace cascdata
{
DECLARE_SOA_INDEX_COLUMN(CascData, cascData); //! Index to CascData entry
DECLARE_SOA_INDEX_COLUMN(KFCascData, kfCascData); //! Index to CascData entry
DECLARE_SOA_INDEX_COLUMN(CascData, cascData); //! Index to CascData entry
DECLARE_SOA_INDEX_COLUMN(KFCascData, kfCascData); //! Index to CascData entry
DECLARE_SOA_INDEX_COLUMN(TraCascData, traCascData); //! Index to CascData entry
}
} // namespace cascdata

DECLARE_SOA_TABLE(CascDataLink, "AOD", "CASCDATALINK", //! Joinable table with Cascades which links to CascData which is not produced for all entries
cascdata::CascDataId);
Expand Down Expand Up @@ -977,7 +977,7 @@ DECLARE_SOA_TABLE(CascTags, "AOD", "CASCTAGS",
// Definition of labels for V0s
namespace mcv0label
{
DECLARE_SOA_INDEX_COLUMN(McParticle, mcParticle); //! MC particle for V0
DECLARE_SOA_INDEX_COLUMN(McParticle, mcParticle); //! MC particle for V0
DECLARE_SOA_INDEX_COLUMN_FULL(McMotherParticle, mcMotherParticle, int, McParticles, "_Mother"); //!
} // namespace mcv0label

Expand All @@ -998,9 +998,9 @@ using McFullV0Label = McFullV0Labels::iterator;
// Definition of labels for cascades
namespace mccasclabel
{
DECLARE_SOA_INDEX_COLUMN(McParticle, mcParticle); //! MC particle for Cascade
DECLARE_SOA_INDEX_COLUMN(McParticle, mcParticle); //! MC particle for Cascade
DECLARE_SOA_INDEX_COLUMN_FULL(McMotherParticle, mcMotherParticle, int, McParticles, "_Mother"); //!
DECLARE_SOA_COLUMN(IsBachBaryonCandidate, isBachBaryonCandidate, bool); //! will this be built or not?
DECLARE_SOA_COLUMN(IsBachBaryonCandidate, isBachBaryonCandidate, bool); //! will this be built or not?
} // namespace mccasclabel

DECLARE_SOA_TABLE(McCascLabels, "AOD", "MCCASCLABEL", //! Table joinable with CascData containing the MC labels
Expand Down
Loading