Skip to content

Commit 4255ce2

Browse files
committed
MC matching for kinkBuilder + SP process function for L1405
1 parent 0bba10f commit 4255ce2

4 files changed

Lines changed: 1217 additions & 348 deletions

File tree

PWGLF/DataModel/LFLambda1405Table.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ namespace lambda1405
2929
DECLARE_SOA_COLUMN(Px, px, float); //! Px of the candidate
3030
DECLARE_SOA_COLUMN(Py, py, float); //! Py of the candidate
3131
DECLARE_SOA_COLUMN(Pz, pz, float); //! Pz of the candidate
32+
DECLARE_SOA_COLUMN(Pt, pt, float); //! Pt of the candidate
3233
DECLARE_SOA_COLUMN(Mass, mass, float); //! Invariant mass of the candidate
3334
DECLARE_SOA_COLUMN(MassXi1530, massXi1530, float); //! Invariant mass of the Xi(1530) candidate
3435
DECLARE_SOA_COLUMN(SigmaMinusMass, sigmaMinusMass, float); //! Invariant mass of the Sigma- candidate
@@ -47,6 +48,10 @@ DECLARE_SOA_COLUMN(DCAKinkDauToPV, dcaKinkDauToPV, float); //! DCA of the kink
4748
DECLARE_SOA_COLUMN(NSigmaTPCPiDau, nSigmaTPCPiDau, float); //! Number of sigmas for the lambda1405 pion daughter in TPC
4849
DECLARE_SOA_COLUMN(NSigmaTOFPiDau, nSigmaTOFPiDau, float); //! Number of sigmas for the lambda1405 pion daughter in TOF
4950

51+
// Flow columns
52+
DECLARE_SOA_COLUMN(ScalarProd, scalarProd, float); //! Scalar product of the candidate
53+
DECLARE_SOA_COLUMN(Centrality, centrality, float); //! Centrality of the candidate
54+
5055
// MC Columns
5156
DECLARE_SOA_COLUMN(PtMC, ptMC, float); //! pT of the candidate in MC
5257
DECLARE_SOA_COLUMN(MassMC, massMC, float); //! Invariant mass of the candidate in MC
@@ -67,6 +72,17 @@ DECLARE_SOA_TABLE(Lambda1405Cands, "AOD", "LAMBDA1405",
6772
lambda1405::DCAKinkDauToPV,
6873
lambda1405::NSigmaTPCPiDau, lambda1405::NSigmaTOFPiDau);
6974

75+
DECLARE_SOA_TABLE(Lambda1405Flow, "AOD", "LAMBDA1405FLOW",
76+
o2::soa::Index<>,
77+
lambda1405::Pt,
78+
lambda1405::Mass, lambda1405::SigmaMinusMass, lambda1405::SigmaPlusMass,
79+
lambda1405::AlphaAPSigma, lambda1405::QtAPSigma,
80+
lambda1405::NSigmaTPCPiKink, lambda1405::NSigmaTOFPiKink,
81+
lambda1405::NSigmaTPCPrKink, lambda1405::NSigmaTOFPrKink,
82+
lambda1405::DCAKinkDauToPV,
83+
lambda1405::NSigmaTPCPiDau, lambda1405::NSigmaTOFPiDau,
84+
lambda1405::ScalarProd, lambda1405::Centrality);
85+
7086
DECLARE_SOA_TABLE(Lambda1405CandsMC, "AOD", "MCLAMBDA1405",
7187
o2::soa::Index<>,
7288
lambda1405::Px, lambda1405::Py, lambda1405::Pz,

0 commit comments

Comments
 (0)