Skip to content

Commit 5287c3c

Browse files
authored
Remove unused parameter from fillPairInfo and isPairOK
1 parent 72c01b9 commit 5287c3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGEM/Dilepton/Core/Dilepton.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ struct Dilepton {
856856
}
857857

858858
template <int ev_id, typename TCollision, typename TTrack1, typename TTrack2, typename TCut, typename TAllTracks>
859-
bool fillPairInfo(TCollision const& collision, TTrack1 const& t1, TTrack2 const& t2, TCut const& cut, TAllTracks const& tracks)
859+
bool fillPairInfo(TCollision const& collision, TTrack1 const& t1, TTrack2 const& t2, TCut const& cut, TAllTracks const&)
860860
{
861861
if constexpr (ev_id == 0) {
862862
if constexpr (pairtype == o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType::kDielectron) {
@@ -1426,7 +1426,7 @@ struct Dilepton {
14261426
} // end of DF
14271427

14281428
template <typename TTrack1, typename TTrack2, typename TCut, typename TAllTracks>
1429-
bool isPairOK(TTrack1 const& t1, TTrack2 const& t2, TCut const& cut, TAllTracks const& tracks)
1429+
bool isPairOK(TTrack1 const& t1, TTrack2 const& t2, TCut const& cut, TAllTracks const&)
14301430
{
14311431
if constexpr (pairtype == o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType::kDielectron) {
14321432
if (dielectroncuts.cfg_pid_scheme == static_cast<int>(DielectronCut::PIDSchemes::kPIDML)) {

0 commit comments

Comments
 (0)