@@ -508,14 +508,12 @@ struct JetLundPlaneUnfolding {
508508 }
509509
510510 // DATA / RECO PROCESSING
511- void processData (soa::Filtered<aod::JetCollisions>::iterator const & collision ,
511+ void processData (soa::Filtered<aod::JetCollisions>::iterator const &,
512512 soa::Filtered<RecoJets> const & jets,
513513 aod::JetTracks const & tracks)
514514 {
515515 registry.fill (HIST (" hEventCount" ), 0.5 );
516516
517- (void )collision; // collision row is part of the process signature but not used directly here
518-
519517 int miniCollIdx = -1 ;
520518 if (writeMiniAOD.value ) {
521519 outMiniCollisions (static_cast <uint8_t >(0 ));
@@ -544,14 +542,12 @@ struct JetLundPlaneUnfolding {
544542
545543 void processMC (DetJetsMatched const & detJets,
546544 PartJetsMatched const & partJets,
547- aod::JetCollisions const & collisions ,
545+ aod::JetCollisions const &,
548546 aod::JetTracks const & tracks,
549547 aod::JetParticles const & particles)
550548 {
551549 registry.fill (HIST (" hEventCount" ), 1.5 );
552550
553- (void )collisions; // collision ids are used only transiently for grouping MiniJets by source event
554-
555551 const int rWanted = static_cast <int >(std::lround (jetR.value * 100 .f ));
556552 std::unordered_map<uint64_t , bool > truthMatchedById;
557553 std::unordered_map<uint64_t , std::vector<SplittingObs>> truthSplittingsById;
0 commit comments