Skip to content
Merged
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/TableProducer/candidateCreator3Prong.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ struct HfCandidateCreator3Prong {
/////////////////////////////////////////////

/// @brief process function using DCA fitter w/ PV refit and w/ centrality selection on UPC
void processPvRefitWithDCAFitterNUpc(soa::Join<aod::Collisions, aod::EvSels, aod::CentFT0Ms> const& collisions,
void processPvRefitWithDCAFitterNUpc(soa::Join<aod::Collisions, aod::EvSels> const& collisions,
FilteredPvRefitHf3Prongs const& rowsTrackIndexProng3,
TracksWCovExtraPidPiKaPrLightNuclei const& tracks,
aod::BcFullInfos const& bcWithTimeStamps,
Expand All @@ -867,7 +867,7 @@ struct HfCandidateCreator3Prong {
PROCESS_SWITCH(HfCandidateCreator3Prong, processPvRefitWithDCAFitterNUpc, "Run candidate creator using DCA fitter with PV refit and w/ centrality selection on UPC", false);

/// @brief process function using DCA fitter w/o PV refit and w/ centrality selection on UPC
void processNoPvRefitWithDCAFitterNUpc(soa::Join<aod::Collisions, aod::EvSels, aod::CentFT0Ms> const& collisions,
void processNoPvRefitWithDCAFitterNUpc(soa::Join<aod::Collisions, aod::EvSels> const& collisions,
FilteredHf3Prongs const& rowsTrackIndexProng3,
TracksWCovExtraPidPiKaPrLightNuclei const& tracks,
aod::BcFullInfos const& bcWithTimeStamps,
Expand All @@ -881,7 +881,7 @@ struct HfCandidateCreator3Prong {
PROCESS_SWITCH(HfCandidateCreator3Prong, processNoPvRefitWithDCAFitterNUpc, "Run candidate creator using DCA fitter without PV refit and w/ centrality selection on UPC", false);

/// @brief process function using KFParticle package w/ PV refit and w/ centrality selection on UPC
void processPvRefitWithKFParticleUpc(soa::Join<aod::Collisions, aod::EvSels, aod::CentFT0Ms> const& collisions,
void processPvRefitWithKFParticleUpc(soa::Join<aod::Collisions, aod::EvSels> const& collisions,
FilteredPvRefitHf3Prongs const& rowsTrackIndexProng3,
TracksWCovExtraPidPiKaPrLightNuclei const& tracks,
aod::BcFullInfos const& bcWithTimeStamps,
Expand All @@ -895,7 +895,7 @@ struct HfCandidateCreator3Prong {
PROCESS_SWITCH(HfCandidateCreator3Prong, processPvRefitWithKFParticleUpc, "Run candidate creator using KFParticle package with PV refit and w/ centrality selection on UPC", false);

/// @brief process function using KFParticle package w/o PV refit and w/ centrality selection on UPC
void processNoPvRefitWithKFParticleUpc(soa::Join<aod::Collisions, aod::EvSels, aod::CentFT0Ms> const& collisions,
void processNoPvRefitWithKFParticleUpc(soa::Join<aod::Collisions, aod::EvSels> const& collisions,
FilteredHf3Prongs const& rowsTrackIndexProng3,
TracksWCovExtraPidPiKaPrLightNuclei const& tracks,
aod::BcFullInfos const& bcWithTimeStamps,
Expand Down
Loading