Skip to content
Merged
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: 1 addition & 3 deletions PWGHF/DataModel/HFSecondaryVertex.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,7 @@ DECLARE_SOA_TABLE(Hf2Prong, "AOD", "HF2PRONG", //! Table for HF 2 prong candidat
DECLARE_SOA_TABLE(HfCascade, "AOD", "HFCASCADE", //! Table for HF candidates with a V0
o2::soa::Index<>,
hf_track_index::Index0Id,
hf_track_index::V0Id,
hf_track_index::HFflag);
hf_track_index::V0Id);

DECLARE_SOA_TABLE(Hf3Prong, "AOD", "HF3PRONG", //! Table for HF 3 prong candidates
o2::soa::Index<>,
Expand Down Expand Up @@ -446,7 +445,6 @@ DECLARE_SOA_TABLE(HfCandCascBase, "AOD", "HFCANDCASCBASE", //!
hf_cand::ErrorImpactParameter0, hf_cand::ErrorImpactParameter1,
hf_track_index::Index0Id,
hf_track_index::V0Id, // V0 index
hf_track_index::HFflag,
// V0
v0data::X, v0data::Y, v0data::Z,
v0data::PosTrackId, v0data::NegTrackId, // indices of V0 tracks in FullTracks table
Expand Down
1 change: 0 additions & 1 deletion PWGHF/TableProducer/HFCandidateCreatorCascade.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ struct HFCandidateCreatorCascade {
impactParameterBach.getY(), impactParameterV0.getY(),
std::sqrt(impactParameterBach.getSigmaY2()), std::sqrt(impactParameterV0.getSigmaY2()),
casc.index0Id(), casc.v0Id(),
casc.hfflag(),
v0.x(), v0.y(), v0.z(),
//v0.posTrack(), v0.negTrack(), // why this was not fine?
trackV0DaughPos.globalIndex(), trackV0DaughNeg.globalIndex(),
Expand Down
4 changes: 1 addition & 3 deletions PWGHF/TableProducer/HFTrackIndexSkimsCreator.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1331,7 +1331,6 @@ struct HfTrackIndexSkimsCreator {

struct HfTrackIndexSkimsCreatorCascades {
Produces<aod::HfCascade> rowTrackIndexCasc;
// Produces<aod::Hf2Prong> rowTrackIndexCasc;

// whether to do or not validation plots
Configurable<bool> doValPlots{"doValPlots", true, "fill histograms"};
Expand Down Expand Up @@ -1577,8 +1576,7 @@ struct HfTrackIndexSkimsCreatorCascades {

// fill table row
rowTrackIndexCasc(bach.globalIndex(),
v0.globalIndex(),
1); // 1 should be the value for the Lc
v0.globalIndex());
// fill histograms
if (doValPlots) {
MY_DEBUG_MSG(isK0SfromLc && isProtonFromLc && isLc, LOG(info) << "KEPT! True Lc from proton " << indexBach << " and K0S pos " << indexV0DaughPos << " and neg " << indexV0DaughNeg);
Expand Down