Skip to content

Commit c528c48

Browse files
authored
Update hStrangeCorrelation.cxx
1 parent 07ccb76 commit c528c48

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1818,7 +1818,7 @@ struct HStrangeCorrelation {
18181818
if (v0Data.has_mcParticle()) {
18191819
auto v0mcParticle = v0Data.mcParticle_as<aod::McParticles>();
18201820
int mcParticlePdg = v0mcParticle.pdgCode();
1821-
if (mcParticlePdg == 3122 && !v0mcParticle.isPhysicalPrimary()){
1821+
if (mcParticlePdg == 3122 && !v0mcParticle.isPhysicalPrimary()) {
18221822
auto v0mothers = v0mcParticle.mothers_as<aod::McParticles>();
18231823
if (!v0mothers.empty()) {
18241824
auto& v0mcParticleMother = v0mothers.front(); // First mother
@@ -1836,11 +1836,11 @@ struct HStrangeCorrelation {
18361836
}
18371837
}
18381838
}
1839-
if(mcParticlePdg == -3122 && !v0mcParticle.isPhysicalPrimary()){
1839+
if(mcParticlePdg == -3122 && !v0mcParticle.isPhysicalPrimary()) {
18401840
auto v0mothers = v0mcParticle.mothers_as<aod::McParticles>();
18411841
if (!v0mothers.empty()) {
18421842
auto& v0mcParticleMother = v0mothers.front(); // First mother
1843-
if (v0mcParticleMother.pdgCode() == -3312) // Xi Plus Mother Matched
1843+
if (v0mcParticleMother.pdgCode() == -3312) // Xi Plus Mother Matched
18441844
{
18451845
histos.fill(HIST("hAntiLambdaXiPlusFeeddownMatrix"), v0mcParticle.pt(), v0mcParticleMother.pt());
18461846
}

0 commit comments

Comments
 (0)