@@ -52,6 +52,8 @@ DECLARE_SOA_COLUMN(ProtonEta, protonEta, float); //! Proton Et
5252DECLARE_SOA_COLUMN (ProtonPhi, protonPhi, float ); // ! Proton Phi
5353DECLARE_SOA_COLUMN (ProtonIndex, protonIndex, int ); // ! Proton index
5454DECLARE_SOA_COLUMN (PionIndex, pionIndex, int ); // ! Pion index
55+ DECLARE_SOA_COLUMN (DcaV0ToPV, dcaV0ToPV, float ); // ! DCA of V0 to primary vertex
56+
5557} // namespace lambdapair
5658DECLARE_SOA_TABLE (LambdaPairs, " AOD" , " LAMBDAPAIR" ,
5759 o2::soa::Index<>,
@@ -71,7 +73,8 @@ DECLARE_SOA_TABLE(LambdaPairs, "AOD", "LAMBDAPAIR",
7173 lambdapair::ProtonEta,
7274 lambdapair::ProtonPhi,
7375 lambdapair::ProtonIndex,
74- lambdapair::PionIndex);
76+ lambdapair::PionIndex,
77+ lambdapair::DcaV0ToPV);
7578
7679using LambdaPair = LambdaPairs::iterator;
7780
@@ -105,6 +108,7 @@ DECLARE_SOA_COLUMN(ProtonEtamc, protonEtamc, float); //! Proto
105108DECLARE_SOA_COLUMN (ProtonPhimc, protonPhimc, float ); // ! Proton Phi in montecarlo
106109DECLARE_SOA_COLUMN (ProtonIndexmc, protonIndexmc, int ); // ! Proton index in montecarlo
107110DECLARE_SOA_COLUMN (PionIndexmc, pionIndexmc, int ); // ! Pion index in montecarlo
111+ DECLARE_SOA_COLUMN (DcaV0ToPVmc, dcaV0ToPVmc, float ); // ! DCA of V0 to primary vertex
108112} // namespace lambdapairmc
109113DECLARE_SOA_TABLE (LambdaPairmcs, " AOD" , " LAMBDAPAIRMC" ,
110114 o2::soa::Index<>,
@@ -124,7 +128,8 @@ DECLARE_SOA_TABLE(LambdaPairmcs, "AOD", "LAMBDAPAIRMC",
124128 lambdapairmc::ProtonEtamc,
125129 lambdapairmc::ProtonPhimc,
126130 lambdapairmc::ProtonIndexmc,
127- lambdapairmc::PionIndexmc);
131+ lambdapairmc::PionIndexmc,
132+ lambdapairmc::DcaV0ToPVmc);
128133
129134using LambdaPairmc = LambdaPairmcs::iterator;
130135
0 commit comments