Skip to content

Commit 548b4f2

Browse files
authored
Fix template parameter syntax in DileptonMC.h
1 parent 5287c3c commit 548b4f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGEM/Dilepton/Core/DileptonMC.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1401,7 +1401,7 @@ struct DileptonMC {
14011401
}
14021402

14031403
template <bool isSmeared, typename TCollision, typename TMCCollisions, typename TTrack1, typename TTrack2, typename TCut, typename TAllTracks, typename TMCParticles>
1404-
bool fillTruePairInfo(TCollision const& collision, TMCCollisions const&, TTrack1 const& t1, TTrack2 const& t2, TCut const& cut, TAllTracks const& tracks, TMCParticles const& mcparticles)
1404+
bool fillTruePairInfo(TCollision const& collision, TMCCollisions const&, TTrack1 const& t1, TTrack2 const& t2, TCut const& cut, TAllTracks const&, TMCParticles const& mcparticles)
14051405
{
14061406
auto t1mc = mcparticles.iteratorAt(t1.emmcparticleId());
14071407
auto t2mc = mcparticles.iteratorAt(t2.emmcparticleId());
@@ -2153,7 +2153,7 @@ struct DileptonMC {
21532153
}
21542154

21552155
template <bool is_wo_acc = false, typename TTrack1, typename TTrack2, typename TCut, typename TAllTracks>
2156-
bool isPairOK(TTrack1 const& t1, TTrack2 const& t2, TCut const& cut, TAllTracks const& tracks)
2156+
bool isPairOK(TTrack1 const& t1, TTrack2 const& t2, TCut const& cut, TAllTracks const&)
21572157
{
21582158
if constexpr (pairtype == o2::aod::pwgem::dilepton::utils::pairutil::DileptonPairType::kDielectron) {
21592159
if (dielectroncuts.cfg_pid_scheme == static_cast<int>(DielectronCut::PIDSchemes::kPIDML)) {

0 commit comments

Comments
 (0)