@@ -215,6 +215,7 @@ struct JetTutorialTask {
215215
216216 using JetMCPTable = soa::Filtered<soa::Join<aod::ChargedMCParticleLevelJets, aod::ChargedMCParticleLevelJetConstituents, aod::ChargedMCParticleLevelJetsMatchedToChargedMCDetectorLevelJets>>;
217217 void processMCMatchedCharged (soa::Filtered<aod::JetCollisionsMCD>::iterator const & collision,
218+ aod::JetMcCollisions const &,
218219 soa::Filtered<soa::Join<aod::ChargedMCDetectorLevelJets, aod::ChargedMCDetectorLevelJetConstituents, aod::ChargedMCDetectorLevelJetsMatchedToChargedMCParticleLevelJets>> const & mcdjets,
219220 JetMCPTable const &,
220221 aod::JetTracks const &,
@@ -226,8 +227,8 @@ struct JetTutorialTask {
226227 for (const auto & mcdjet : mcdjets) {
227228 for (auto & mcpjet : mcdjet.template matchedJetGeo_as <JetMCPTable>()) {
228229 registry.fill (HIST (" h_matched_jets_pt" ), mcpjet.pt (), mcdjet.pt (), collision.mcCollision ().weight ());
229- registry.fill (HIST (" h_matched_jets_pt " ), mcpjet.phi (), mcdjet.phi (), collision.mcCollision ().weight ());
230- registry.fill (HIST (" h_matched_jets_pt " ), mcpjet.eta (), mcdjet.eta (), collision.mcCollision ().weight ());
230+ registry.fill (HIST (" h_matched_jets_phi " ), mcpjet.phi (), mcdjet.phi (), collision.mcCollision ().weight ());
231+ registry.fill (HIST (" h_matched_jets_eta " ), mcpjet.eta (), mcdjet.eta (), collision.mcCollision ().weight ());
231232 }
232233 }
233234 }
0 commit comments