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
8 changes: 4 additions & 4 deletions PWGHF/HFC/TableProducer/correlatorDsHadrons.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ struct HfCorrelatorDsHadrons {
track.pt(),
poolBin);
entryDsHadronRecoInfo(hfHelper.invMassDsToKKPi(candidate), false, false);
//entryDsHadronGenInfo(false, false, 0);
// entryDsHadronGenInfo(false, false, 0);
entryDsHadronMlInfo(outputMl[0], outputMl[2]);
entryTrackRecoInfo(track.dcaXY(), track.dcaZ(), track.tpcNClsCrossedRows());
} else if (candidate.isSelDsToPiKK() >= selectionFlagDs) {
Expand All @@ -427,7 +427,7 @@ struct HfCorrelatorDsHadrons {
track.pt(),
poolBin);
entryDsHadronRecoInfo(hfHelper.invMassDsToPiKK(candidate), false, false);
//entryDsHadronGenInfo(false, false, 0);
// entryDsHadronGenInfo(false, false, 0);
entryDsHadronMlInfo(outputMl[0], outputMl[2]);
entryTrackRecoInfo(track.dcaXY(), track.dcaZ(), track.tpcNClsCrossedRows());
}
Expand Down Expand Up @@ -808,7 +808,7 @@ struct HfCorrelatorDsHadrons {
pAssoc.pt(),
poolBin);
entryDsHadronRecoInfo(hfHelper.invMassDsToKKPi(cand), false, false);
//entryDsHadronGenInfo(false, false, 0);
// entryDsHadronGenInfo(false, false, 0);
for (unsigned int iclass = 0; iclass < classMl->size(); iclass++) {
outputMl[iclass] = cand.mlProbDsToKKPi()[classMl->at(iclass)];
}
Expand All @@ -822,7 +822,7 @@ struct HfCorrelatorDsHadrons {
pAssoc.pt(),
poolBin);
entryDsHadronRecoInfo(hfHelper.invMassDsToPiKK(cand), false, false);
//entryDsHadronGenInfo(false, false, 0);
// entryDsHadronGenInfo(false, false, 0);
for (unsigned int iclass = 0; iclass < classMl->size(); iclass++) {
outputMl[iclass] = cand.mlProbDsToPiKK()[classMl->at(iclass)];
}
Expand Down
4 changes: 2 additions & 2 deletions PWGHF/HFC/TableProducer/correlatorDsHadronsReduced.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ using BinningTypeDerived = ColumnBinningPolicy<aod::hf_collisions_reduced::PosZ,
struct HfCorrelatorDsHadronsReduced {
Produces<aod::DsHadronPair> entryDsHadronPair;
Produces<aod::DsHadronRecoInfo> entryDsHadronRecoInfo;
//Produces<aod::DsHadronGenInfo> entryDsHadronGenInfo;
// Produces<aod::DsHadronGenInfo> entryDsHadronGenInfo;

Configurable<bool> fillHistoData{"fillHistoData", true, "Flag for filling histograms in data processes"};
Configurable<int> numberEventsMixed{"numberEventsMixed", 5, "Number of events mixed in ME process"};
Expand Down Expand Up @@ -109,7 +109,7 @@ struct HfCorrelatorDsHadronsReduced {
pAssoc.ptAssocTrack(),
poolBin);
entryDsHadronRecoInfo(cand.invMassDs(), false, false);
//entryDsHadronGenInfo(false, false, 0);
// entryDsHadronGenInfo(false, false, 0);
}
}
}
Expand Down
Loading