Skip to content

Commit 5564d67

Browse files
committed
Remove unused parameter
1 parent f127739 commit 5564d67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGHF/D2H/Core/DataCreationCharmReso.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ bool buildAndSelectV0(const Coll& collision, const std::array<int, 3>& dDaughter
512512
/// \param rejectPairsWithCommonDaughter is a flag to activate rejection of pairs sharing a daughter track
513513
/// \return a bitmap with mass hypotesis if passes all cuts
514514
template <class BCs, class Colls, typename Coll, typename Tr, typename Cuts>
515-
bool buildAndSelectGamma(const Coll& collision, const std::array<int, 3>& dDaughtersIds, const std::array<Tr, 2>& dauTracks, const Cuts& cfgGammaCuts, HfResoCandidateV0& v0, o2::base::Propagator::MatCorrType const& matCorr, const float bz, o2::aod::common::TPCVDriftManager* vDriftMgr, bool rejectPairsWithCommonDaughter)
515+
bool buildAndSelectGamma(const Coll& collision, const std::array<int, 3>& dDaughtersIds, const std::array<Tr, 2>& dauTracks, const Cuts& cfgGammaCuts, HfResoCandidateV0& v0, o2::base::Propagator::MatCorrType const& matCorr, o2::aod::common::TPCVDriftManager* vDriftMgr, bool rejectPairsWithCommonDaughter)
516516
{
517517
const auto& trackPos = dauTracks[0];
518518
const auto& trackNeg = dauTracks[1];
@@ -1681,7 +1681,7 @@ void runDataCreation(Coll const& collision,
16811681
// Apply selsection
16821682
auto gammaDauTracks = std::array{trackPos, trackNeg};
16831683
HfResoCandidateV0 candGamma;
1684-
if (!buildAndSelectGamma<BCs, Colls>(collision, prongIdsD, gammaDauTracks, cfgGammaCuts, candGamma, matCorr, bz, vDriftMgr, rejectPairsWithCommonDaughter)) {
1684+
if (!buildAndSelectGamma<BCs, Colls>(collision, prongIdsD, gammaDauTracks, cfgGammaCuts, candGamma, matCorr, vDriftMgr, rejectPairsWithCommonDaughter)) {
16851685
continue;
16861686
}
16871687
// Get single track variables

0 commit comments

Comments
 (0)