Skip to content

Commit 1175557

Browse files
committed
Please consider the following formatting changes
1 parent 4d2f4ae commit 1175557

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

PWGJE/Tasks/jetOutlierQA.cxx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -690,12 +690,11 @@ struct JetOutlierQATask {
690690
registry.fill(HIST("h_pt_hard_track_pt_same_collision"), pTHat != 0.0 ? track.pt() / pTHat : 0.0, track.pt(), weight);
691691

692692
// include selection on pThat of particle
693-
if(mcParticleOutlier.pt() < pTHatMaxMCP * pTHat) {
693+
if (mcParticleOutlier.pt() < pTHatMaxMCP * pTHat) {
694694
registry.fill(HIST("h_track_pt_same_collision_cut_particle"), track.pt(), weight);
695695
registry.fill(HIST("h_pt_hard_track_pt_same_collision_cut_particle"), pTHat != 0.0 ? track.pt() / pTHat : 0.0, track.pt(), weight);
696696
}
697-
}
698-
else {
697+
} else {
699698
registry.fill(HIST("h_track_pt_same_collision_rejected"), track.pt(), weight);
700699
}
701700
// fill tracks for events which have no JJ outlier tracks from different events
@@ -704,8 +703,7 @@ struct JetOutlierQATask {
704703
registry.fill(HIST("h_track_pt_eta_no_JJ_different"), track.pt(), track.eta(), weight);
705704
registry.fill(HIST("h_track_pt_phi_no_JJ_different"), track.pt(), track.phi(), weight);
706705
registry.fill(HIST("h2_collision_ID_difference_no_JJ_different"), pTHat, float(outlierCollisionIDDifference));
707-
}
708-
else {
706+
} else {
709707
registry.fill(HIST("h_track_pt_no_JJ_different_rejected"), track.pt(), weight);
710708
}
711709
// collision checks for all tracks

0 commit comments

Comments
 (0)