Skip to content
Merged
Show file tree
Hide file tree
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
31 changes: 31 additions & 0 deletions ALICE3/DataModel/OTFStrangeness.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
DECLARE_SOA_INDEX_COLUMN_FULL(BachTrack, bachTrack, int, Tracks, "_Bach"); //!

// topo vars
DECLARE_SOA_COLUMN(DCAV0Daughters, dcaV0Daughters, float);

Check failure on line 36 in ALICE3/DataModel/OTFStrangeness.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-column]

Use UpperCamelCase for names of O2 columns and matching lowerCamelCase names for their getters.
DECLARE_SOA_COLUMN(DCACascadeDaughters, dcaCascadeDaughters, float);

Check failure on line 37 in ALICE3/DataModel/OTFStrangeness.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-column]

Use UpperCamelCase for names of O2 columns and matching lowerCamelCase names for their getters.
DECLARE_SOA_COLUMN(V0Radius, v0Radius, float);
DECLARE_SOA_COLUMN(CascRadius, cascRadius, float);
DECLARE_SOA_COLUMN(CascRadiusMC, cascRadiusMC, float);
Expand Down Expand Up @@ -65,6 +65,37 @@

using UpgradeCascade = UpgradeCascades::iterator;

namespace otfv0
{
DECLARE_SOA_INDEX_COLUMN(Collision, collision); //!
DECLARE_SOA_INDEX_COLUMN_FULL(PosTrack, posTrack, int, Tracks, "_Pos"); //!
DECLARE_SOA_INDEX_COLUMN_FULL(NegTrack, negTrack, int, Tracks, "_Neg"); //!
DECLARE_SOA_INDEX_COLUMN(V0, v0); //!

// topo vars
DECLARE_SOA_COLUMN(DCAV0Daughters, dcaV0Daughters, float);

Check failure on line 76 in ALICE3/DataModel/OTFStrangeness.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-column]

Use UpperCamelCase for names of O2 columns and matching lowerCamelCase names for their getters.
DECLARE_SOA_COLUMN(V0Radius, v0Radius, float);
DECLARE_SOA_COLUMN(MLambda, mLambda, float);
DECLARE_SOA_COLUMN(MAntiLambda, mAntiLambda, float);
DECLARE_SOA_COLUMN(MK0, mK0, float);

// kinematics
DECLARE_SOA_COLUMN(Pt, pt, float);

} // namespace otfv0
DECLARE_SOA_TABLE(UpgradeV0s, "AOD", "UPGRADEV0S",
o2::soa::Index<>,
otfv0::CollisionId,
otfv0::PosTrackId,
otfv0::NegTrackId,
otfv0::DCAV0Daughters,
otfv0::V0Radius,
otfv0::MLambda,
otfv0::MAntiLambda,
otfv0::MK0,
otfv0::Pt);

using UpgradeV0 = UpgradeV0s::iterator;
} // namespace o2::aod

#endif // ALICE3_DATAMODEL_OTFSTRANGENESS_H_
Loading
Loading