Skip to content

Commit 287207f

Browse files
committed
Organise columns
1 parent b5d6983 commit 287207f

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

PWGHF/DataModel/DerivedTables.h

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -330,28 +330,28 @@ DECLARE_SOA_COLUMN(DecayLength, decayLength, float);
330330
DECLARE_SOA_COLUMN(DecayLengthNormalised, decayLengthNormalised, float); //! decay length divided by its uncertainty
331331
DECLARE_SOA_COLUMN(DecayLengthXY, decayLengthXY, float); //! decay length in the transverse plane
332332
DECLARE_SOA_COLUMN(DecayLengthXYNormalised, decayLengthXYNormalised, float); //! decay length in the transverse plane divided by its uncertainty
333+
DECLARE_SOA_COLUMN(ImpactParameterXi, impactParameterXi, float); //! impact parameter of the Xi prong
334+
DECLARE_SOA_COLUMN(ImpactParameterPi0, impactParameterPi0, float); //! impact parameter of the first pion prong
335+
DECLARE_SOA_COLUMN(ImpactParameterPi1, impactParameterPi1, float); //! impact parameter of the second pion prong
333336
DECLARE_SOA_COLUMN(ImpactParameterNormalised0, impactParameterNormalised0, float); //! impact parameter of prong 0 divided by its uncertainty
334337
DECLARE_SOA_COLUMN(ImpactParameterNormalised1, impactParameterNormalised1, float); //! impact parameter of prong 1 divided by its uncertainty
335338
DECLARE_SOA_COLUMN(ImpactParameterNormalised2, impactParameterNormalised2, float); //! impact parameter of prong 2 divided by its uncertainty
339+
DECLARE_SOA_COLUMN(ImpactParameterNormalisedXi, impactParameterNormalisedXi, float); //! impact parameter of the Xi prong divided by its uncertainty
340+
DECLARE_SOA_COLUMN(ImpactParameterNormalisedPi0, impactParameterNormalisedPi0, float); //! impact parameter of the first pion prong divided by its uncertainty
341+
DECLARE_SOA_COLUMN(ImpactParameterNormalisedPi1, impactParameterNormalisedPi1, float); //! impact parameter of the second pion prong divided by its uncertainty
336342
DECLARE_SOA_COLUMN(ImpactParameterProduct, impactParameterProduct, float); //! product of impact parameters of prong 0 and prong 1
337-
DECLARE_SOA_COLUMN(ImpactParameterXi, impactParameterXi, float); //! product of impact parameters of prong 0 and prong 1
338-
DECLARE_SOA_COLUMN(ImpactParameterNormalisedXi, impactParameterNormalisedXi, float); //! product of impact parameters of prong 0 and prong 1
339-
DECLARE_SOA_COLUMN(ImpactParameterPi0, impactParameterPi0, float); //! product of impact parameters of prong 0 and prong 1
340-
DECLARE_SOA_COLUMN(ImpactParameterNormalisedPi0, impactParameterNormalisedPi0, float); //! product of impact parameters of prong 0 and prong 1
341-
DECLARE_SOA_COLUMN(ImpactParameterPi1, impactParameterPi1, float); //! product of impact parameters of prong 0 and prong 1
342-
DECLARE_SOA_COLUMN(ImpactParameterNormalisedPi1, impactParameterNormalisedPi1, float); //! product of impact parameters of prong 0 and prong 1
343343
DECLARE_SOA_COLUMN(MaxNormalisedDeltaIP, maxNormalisedDeltaIP, float); //! see RecoDecay::maxNormalisedDeltaIP
344344
DECLARE_SOA_COLUMN(PProng0, pProng0, float); //! momentum magnitude of prong 0
345345
DECLARE_SOA_COLUMN(PProng1, pProng1, float); //! momentum magnitude of prong 1
346346
DECLARE_SOA_COLUMN(PProng2, pProng2, float); //! momentum magnitude of prong 2
347-
DECLARE_SOA_COLUMN(PPi0, pPi0, float); //! momentum of pion prong 0
348-
DECLARE_SOA_COLUMN(PPi1, pPi1, float); //! momentum of pion prong 1
347+
DECLARE_SOA_COLUMN(PProngPi0, pProngPi0, float); //! momentum magnitude of the first pion prong
348+
DECLARE_SOA_COLUMN(PProngPi1, pProngPi1, float); //! momentum magnitude of the second pion prong
349349
DECLARE_SOA_COLUMN(PtProng0, ptProng0, float); //! transverse momentum of prong 0
350350
DECLARE_SOA_COLUMN(PtProng1, ptProng1, float); //! transverse momentum of prong 1
351351
DECLARE_SOA_COLUMN(PtProng2, ptProng2, float); //! transverse momentum of prong 2
352-
DECLARE_SOA_COLUMN(PtPi0, ptPi0, float); //! transverse momentum of pion prong 0
353-
DECLARE_SOA_COLUMN(PtPi1, ptPi1, float); //! transverse momentum of pion prong 1
354-
DECLARE_SOA_COLUMN(PtXi, ptXi, float); //! transverse momentum of Xi prong
352+
DECLARE_SOA_COLUMN(PtProngXi, ptProngXi, float); //! transverse momentum of the Xi prong
353+
DECLARE_SOA_COLUMN(PtProngPi0, ptProngPi0, float); //! transverse momentum of the first pion prong
354+
DECLARE_SOA_COLUMN(PtProngPi1, ptProngPi1, float); //! transverse momentum of the second pion prong
355355
DECLARE_SOA_COLUMN(RSecondaryVertex, rSecondaryVertex, float); //! distance of the secondary vertex from the z axis
356356
// D*± → D0(bar) π±
357357
DECLARE_SOA_COLUMN(SignProng1, signProng1, int8_t);
@@ -936,9 +936,9 @@ DECLARE_SOA_TABLE_STAGED(HfDstarMcs, "HFDSTMC", //! Table with MC candidate info
936936
// ----------------
937937

938938
DECLARE_SOA_TABLE_STAGED(HfXicToXiPiPiPars, "HFXICXPPPAR", //! Table with candidate properties used for selection
939-
hf_cand_par::PtXi,
940-
hf_cand_par::PtPi0,
941-
hf_cand_par::PtPi1,
939+
hf_cand_par::PtProngXi,
940+
hf_cand_par::PtProngPi0,
941+
hf_cand_par::PtProngPi1,
942942
hf_cand_xic_to_xi_pi_pi::InvMassXi,
943943
hf_cand_xic_to_xi_pi_pi::InvMassLambda,
944944
hf_cand_xic_to_xi_pi_pi::InvMassXiPi0,
@@ -967,8 +967,8 @@ DECLARE_SOA_TABLE_STAGED(HfXicToXiPiPiPars, "HFXICXPPPAR", //! Table with candid
967967
DECLARE_SOA_TABLE_STAGED(HfXicToXiPiPiParEs, "HFXICXPPPARE", //! Table with additional candidate properties used for selection
968968
hf_cand_xic_to_xi_pi_pi::CpaLambdaToXi,
969969
hf_cand_xic_to_xi_pi_pi::CpaXYLambdaToXi,
970-
hf_cand_par::PPi0,
971-
hf_cand_par::PPi1,
970+
hf_cand_par::PProngPi0,
971+
hf_cand_par::PProngPi1,
972972
hf_cand_xic_to_xi_pi_pi::PBachelorPi,
973973
hf_cand_xic_to_xi_pi_pi::PPiFromLambda,
974974
hf_cand_xic_to_xi_pi_pi::PPrFromLambda,

0 commit comments

Comments
 (0)