Skip to content
Draft
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
4 changes: 4 additions & 0 deletions PWGLF/DataModel/LFResonanceTables.h
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,8 @@ DECLARE_SOA_COLUMN(CascTransRadius, cascTransRadius, float);
DECLARE_SOA_COLUMN(DecayVtxX, decayVtxX, float); //! X position of the decay vertex
DECLARE_SOA_COLUMN(DecayVtxY, decayVtxY, float); //! Y position of the decay vertex
DECLARE_SOA_COLUMN(DecayVtxZ, decayVtxZ, float); //! Z position of the decay vertex
DECLARE_SOA_COLUMN(Alpha, alpha, float); //! Alpha of the decay vertex
DECLARE_SOA_COLUMN(QtArm, qtarm, float); //! Armenteros Qt of the decay vertex
DECLARE_SOA_COLUMN(TpcSignal10, tpcSignal10, int8_t); //! TPC signal of the track x10
DECLARE_SOA_COLUMN(DaughterTPCNSigmaPosPi10, daughterTPCNSigmaPosPi10, int8_t); //! TPC PID x10 of the positive daughter as Pion
DECLARE_SOA_COLUMN(DaughterTPCNSigmaPosKa10, daughterTPCNSigmaPosKa10, int8_t); //! TPC PID x10 of the positive daughter as Kaon
Expand Down Expand Up @@ -648,6 +650,8 @@ DECLARE_SOA_TABLE(ResoV0s, "AOD", "RESOV0",
resodaughter::DecayVtxX,
resodaughter::DecayVtxY,
resodaughter::DecayVtxZ,
resodaughter::Alpha,
resodaughter::QtArm,
// resodaughter::Pt<resodaughter::Px, resodaughter::Py>,
resodaughter::Eta<resodaughter::Px, resodaughter::Py, resodaughter::Pz>,
resodaughter::Phi<resodaughter::Px, resodaughter::Py>,
Expand Down
7 changes: 4 additions & 3 deletions PWGLF/TableProducer/Resonances/resonanceInitializer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,8 @@ struct ResonanceInitializer {
v0.mLambda(),
v0.mAntiLambda(),
v0.mK0Short(),
v0.v0radius(), v0.x(), v0.y(), v0.z());
v0.v0radius(), v0.x(), v0.y(), v0.z(),
v0.alpha(), v0.qtarm());
if (!cfgBypassTrackIndexFill) {
resoV0V0s(v0.globalIndex());
}
Expand Down Expand Up @@ -1016,7 +1017,7 @@ struct ResonanceInitializer {
daughterPDGs = getDaughtersPDGCodes(v0mc);
}
while (daughters.size() > 2) {
LOGF(info, "daughters.size() is larger than 2");
// LOGF(info, "daughters.size() is larger than 2");
daughters.pop_back();
daughterPDGs.pop_back();
}
Expand Down Expand Up @@ -1127,7 +1128,7 @@ struct ResonanceInitializer {
daughterPDGs = getDaughtersPDGCodes(cascmc);
}
while (daughters.size() > 2) {
LOGF(info, "daughters.size() is larger than 2");
// LOGF(info, "daughters.size() is larger than 2");
daughters.pop_back();
daughterPDGs.pop_back();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,8 @@ struct ResonanceDaughterInitializer {
v0.mLambda(),
v0.mAntiLambda(),
v0.mK0Short(),
v0.v0radius(), v0.x(), v0.y(), v0.z());
v0.v0radius(), v0.x(), v0.y(), v0.z(),
v0.alpha(), v0.qtarm());
if (!cfgBypassTrackIndexFill) {
resoV0V0s(v0.globalIndex());
}
Expand Down
Loading
Loading