@@ -692,12 +692,11 @@ struct JetOutlierQATask {
692692 int mcCollisionIDcoll = collision.mcCollisionId (); // Get the corresponding MC collision ID from the reco collision
693693 int mcCollisionIDOutlier = mcParticleOutlier.mcCollisionId ();
694694 // include selection on pThat of particle
695- if (mcParticleOutlier.pt () < pTHatMaxMCP * pTHat) {
695+ if (mcParticleOutlier.pt () < pTHatMaxMCP * pTHat) {
696696 registry.fill (HIST (" h_track_pt_same_collision_cut_particle" ), track.pt (), weight);
697697 registry.fill (HIST (" h_pt_hard_track_pt_same_collision_cut_particle" ), pTHat != 0.0 ? track.pt () / pTHat : 0.0 , track.pt (), weight);
698698 }
699- }
700- else {
699+ } else {
701700 registry.fill (HIST (" h_track_pt_same_collision_rejected" ), track.pt (), weight);
702701 }
703702 // fill tracks for events which have no JJ outlier tracks from different events
@@ -706,8 +705,7 @@ struct JetOutlierQATask {
706705 registry.fill (HIST (" h_track_pt_eta_no_JJ_different" ), track.pt (), track.eta (), weight);
707706 registry.fill (HIST (" h_track_pt_phi_no_JJ_different" ), track.pt (), track.phi (), weight);
708707 registry.fill (HIST (" h2_collision_ID_difference_no_JJ_different" ), pTHat, float (outlierCollisionIDDifference));
709- }
710- else {
708+ } else {
711709 registry.fill (HIST (" h_track_pt_no_JJ_different_rejected" ), track.pt (), weight);
712710 }
713711 // collision checks for all tracks
0 commit comments