@@ -386,13 +386,13 @@ struct JetHadronRecoil {
386386 phiTTAr.push_back (particle.phi ());
387387 ptTTAr.push_back (particle.pt ());
388388 nTT++;
389- registry.fill (HIST (" hSignalTriggers" ), track .pt (), weight);
389+ registry.fill (HIST (" hSignalTriggers" ), particle .pt (), weight);
390390 }
391391 if (!isSigCol && particle.pt () < ptTTrefMax && particle.pt () > ptTTrefMin) {
392392 phiTTAr.push_back (particle.phi ());
393393 ptTTAr.push_back (particle.pt ());
394394 nTT++;
395- registry.fill (HIST (" hReferenceTriggers" ), track .pt (), weight);
395+ registry.fill (HIST (" hReferenceTriggers" ), particle .pt (), weight);
396396 }
397397 registry.fill (HIST (" hPtPart" ), particle.pt (), weight);
398398 registry.fill (HIST (" hEtaPart" ), particle.eta (), weight);
@@ -469,7 +469,7 @@ struct JetHadronRecoil {
469469 }
470470
471471 template <typename T, typename U, typename V>
472- void fillMCPHistogramsWithMatchedTracks (T const & jets, U const &, V const & tracks, float weight = 1.0 , float pTHat = 999.0 )
472+ void fillMCPHistogramsWithMatchedTracks (T const & jets, U const & particles , V const & tracks, float weight = 1.0 , float pTHat = 999.0 )
473473 {
474474 bool isSigCol;
475475 std::vector<double > phiTTAr;
@@ -512,13 +512,13 @@ struct JetHadronRecoil {
512512 phiTTAr.push_back (particle.phi ());
513513 ptTTAr.push_back (particle.pt ());
514514 nTT++;
515- registry.fill (HIST (" hSignalTriggers" ), track .pt (), weight);
515+ registry.fill (HIST (" hSignalTriggers" ), particle .pt (), weight);
516516 }
517517 if (!isSigCol && particle.pt () < ptTTrefMax && particle.pt () > ptTTrefMin) {
518518 phiTTAr.push_back (particle.phi ());
519519 ptTTAr.push_back (particle.pt ());
520520 nTT++;
521- registry.fill (HIST (" hReferenceTriggers" ), track .pt (), weight);
521+ registry.fill (HIST (" hReferenceTriggers" ), particle .pt (), weight);
522522 }
523523 registry.fill (HIST (" hPtPart" ), particle.pt (), weight);
524524 registry.fill (HIST (" hEtaPart" ), particle.eta (), weight);
@@ -882,7 +882,7 @@ struct JetHadronRecoil {
882882 void processMCPWeightedWithMatchedTracks (aod::JetMcCollision const & collision,
883883 soa::Filtered<soa::Join<aod::ChargedMCParticleLevelJets, aod::ChargedMCParticleLevelJetConstituents>> const & jets,
884884 soa::Filtered<aod::JetParticles> const & particles,
885- soa::Filtered<aod::JetTracks > const & tracks)
885+ soa::Filtered<aod::JetTracksMCD > const & tracks)
886886 {
887887 if (std::abs (collision.posZ ()) > vertexZCut) {
888888 return ;
0 commit comments