Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Jul 11, 2023
1 parent 77bd20d commit 2737f75
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PWGLF/Tasks/k1analysis.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,9 @@ struct k1analysis {
lResonanceK892 = lDecayDaughter1 + lDecayDaughter2;

if constexpr (!IsMix) {
histos.fill(HIST("k892invmass"), lResonanceK892.M()); // quick check
if (trk1.sign() > 0) { // Positive pion
if (trk2.sign() > 0) // Positive kaon
histos.fill(HIST("k892invmass"), lResonanceK892.M()); // quick check
if (trk1.sign() > 0) { // Positive pion
if (trk2.sign() > 0) // Positive kaon
histos.fill(HIST("hK892invmass_MM"), collision.multV0M(), lResonanceK892.Pt(), lResonanceK892.M());
else // Negative kaon
histos.fill(HIST("hK892invmass_AM"), collision.multV0M(), lResonanceK892.Pt(), lResonanceK892.M()); // Anti-K(892)0
Expand Down Expand Up @@ -470,7 +470,7 @@ struct k1analysis {
histos.fill(HIST("hK1invmass_MM_MC"), collision.multV0M(), lResonanceK1.Pt(), lResonanceK1.M());
histos.fill(HIST("k1invmass_MC"), lResonanceK1.M()); // quick check
}
if ((bTrack.sign() < 0) && (trk2.sign() < 0)) { // Anti-matter
if ((bTrack.sign() < 0) && (trk2.sign() < 0)) { // Anti-matter
histos.fill(HIST("hK1invmass_AA_MC"), collision.multV0M(), lResonanceK1.Pt(), lResonanceK1.M());
histos.fill(HIST("k1invmass_MC"), lResonanceK1.M()); // quick check
}
Expand Down

0 comments on commit 2737f75

Please sign in to comment.