Skip to content

Commit 2203cc0

Browse files
authored
[PWGLF] Update hypertriton 3-body decay event mixing and derived data model (#10232)
1 parent aba6b7a commit 2203cc0

File tree

5 files changed

+500
-349
lines changed

5 files changed

+500
-349
lines changed

PWGLF/DataModel/Reduced3BodyTables.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,9 @@ DECLARE_SOA_INDEX_COLUMN_FULL(Track0, track0, int, RedIUTracks, "_0"); //!
256256
DECLARE_SOA_INDEX_COLUMN_FULL(Track1, track1, int, RedIUTracks, "_1"); //! Track 1 index
257257
DECLARE_SOA_INDEX_COLUMN_FULL(Track2, track2, int, RedIUTracks, "_2"); //! Track 2 index
258258
DECLARE_SOA_INDEX_COLUMN_FULL(Collision, collision, int, RedCollisions, ""); //! Collision index
259+
DECLARE_SOA_COLUMN(Phi, phi, float); //! decay3body radius
260+
DECLARE_SOA_COLUMN(Radius, radius, float); //! decay3body phi
261+
DECLARE_SOA_COLUMN(PosZ, posz, float); //! decay3body z position
259262
} // namespace reduceddecay3body
260263

261264
DECLARE_SOA_TABLE(RedDecay3Bodys, "AOD", "REDDECAY3BODY", //! reduced 3-body decay table
@@ -264,6 +267,9 @@ DECLARE_SOA_TABLE(RedDecay3Bodys, "AOD", "REDDECAY3BODY", //! reduced 3-body dec
264267
using ReducedDecay3BodysLinked = soa::Join<RedDecay3Bodys, Decay3BodyDataLink>;
265268
using ReducedDecay3BodyLinked = ReducedDecay3BodysLinked::iterator;
266269

270+
DECLARE_SOA_TABLE(Red3BodyInfo, "AOD", "RED3BODYINFO", //! joinable with RedDecay3Bodys
271+
reduceddecay3body::Radius, reduceddecay3body::Phi, reduceddecay3body::PosZ);
272+
267273
} // namespace o2::aod
268274

269275
#endif // PWGLF_DATAMODEL_REDUCED3BODYTABLES_H_

PWGLF/TableProducer/Nuspex/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,5 +101,5 @@ o2physics_add_dpl_workflow(tr-he-analysis
101101

102102
o2physics_add_dpl_workflow(reduced3body-creator
103103
SOURCES reduced3bodyCreator.cxx
104-
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore O2Physics::EventFilteringUtils O2::TOFBase
104+
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore KFParticle::KFParticle O2Physics::EventFilteringUtils O2::TOFBase
105105
COMPONENT_NAME Analysis)

0 commit comments

Comments
 (0)