Skip to content

Commit 0ea780c

Browse files
authored
fix PR format
1 parent 7df186e commit 0ea780c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

PWGJE/Tasks/jetPlanarFlow.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -340,29 +340,29 @@ struct JetPlanarFlowTask {
340340
if (isInJet) {
341341
registry.fill(HIST("h3_track_pt_track_theta_track_phi_incone_beforeRot"), track.pt(), thetaOrigin, track.phi());
342342
registry.fill(HIST("h3_track_pt_track_theta_track_phi_incone_afterRot"), track.pt(), thetaRot, phiRot);
343-
if (track.pt() > relatedTrackptlow && track.pt() < relatedTrackpthigh) { // low pt tracks, no contribute to rotation axis
343+
if (track.pt() > relatedTrackptlow && track.pt() < relatedTrackpthigh) { // low pt tracks, no contribute to rotation axis
344344
registry.fill(HIST("h2_track_thetaSinphi_track_thetaCosphi_incone_lowpt_afterRot"), thetaRot * TMath::Sin(phiRot), thetaRot * TMath::Cos(phiRot));
345345
} else if (track.pt() > relatedTrackpthigh) {
346346
registry.fill(HIST("h2_track_thetaSinphi_track_thetaCosphi_incone_highpt_afterRot"), thetaRot * TMath::Sin(phiRot), thetaRot * TMath::Cos(phiRot));
347347
}
348348
} else {
349349
registry.fill(HIST("h3_track_pt_track_theta_track_phi_outcone_beforeRot"), track.pt(), thetaOrigin, track.phi());
350350
registry.fill(HIST("h3_track_pt_track_theta_track_phi_outcone_afterRot"), track.pt(), thetaRot, phiRot);
351-
if (track.pt() > relatedTrackptlow && track.pt() < relatedTrackpthigh) { // low pt tracks, no contribute to rotation axis
351+
if (track.pt() > relatedTrackptlow && track.pt() < relatedTrackpthigh) { // low pt tracks, no contribute to rotation axis
352352
registry.fill(HIST("h2_track_thetaSinphi_track_thetaCosphi_outcone_lowpt_afterRot"), thetaRot * TMath::Sin(phiRot), thetaRot * TMath::Cos(phiRot));
353353
} else if (track.pt() > relatedTrackpthigh) {
354354
registry.fill(HIST("h2_track_thetaSinphi_track_thetaCosphi_outcone_highpt_afterRot"), thetaRot * TMath::Sin(phiRot), thetaRot * TMath::Cos(phiRot));
355355
}
356356
}
357357

358358
if (NsubTau2to1 < 0.3) {
359-
if (track.pt() > relatedTrackptlow && track.pt() < relatedTrackpthigh) {
359+
if (track.pt() > relatedTrackptlow && track.pt() < relatedTrackpthigh) {
360360
registry.fill(HIST("h3_track_thetaSinPhi_track_thetaCosphi_jetDR_2prolong_lowpt"), nSubCASDResults[0], thetaRot * TMath::Sin(track.phi()), thetaRot * TMath::Cos(track.phi()));
361361
} else if (track.pt() > relatedTrackpthigh) {
362362
registry.fill(HIST("h3_track_thetaSinPhi_track_thetaCosphi_jetDR_2prolong_highpt"), nSubCASDResults[0], thetaRot * TMath::Sin(track.phi()), thetaRot * TMath::Cos(track.phi()));
363363
}
364-
} else if (NsubTau2to1 > 0.6){
365-
if (track.pt() > relatedTrackptlow && track.pt() < relatedTrackpthigh) {
364+
} else if (NsubTau2to1 > 0.6) {
365+
if (track.pt() > relatedTrackptlow && track.pt() < relatedTrackpthigh) {
366366
registry.fill(HIST("h3_track_thetaSinPhi_track_thetaCosphi_jetDR_1prolong_lowpt"), nSubCASDResults[0], thetaRot * TMath::Sin(track.phi()), thetaRot * TMath::Cos(track.phi()));
367367
} else if (track.pt() > relatedTrackpthigh) {
368368
registry.fill(HIST("h3_track_thetaSinPhi_track_thetaCosphi_jetDR_1prolong_highpt"), nSubCASDResults[0], thetaRot * TMath::Sin(track.phi()), thetaRot * TMath::Cos(track.phi()));

0 commit comments

Comments
 (0)