Skip to content

Commit 799cc55

Browse files
authored
Add files via upload
Updated the axis of the output object to contain eta of the FITs.
1 parent 4dec0d5 commit 799cc55

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -704,21 +704,21 @@ struct FlowDecorrelation {
704704
if (system == SameEvent) {
705705
if (corType == kFT0A) {
706706
registry.fill(HIST("Assoc_amp_same_TPC_FT0A"), chanelid, ampl);
707-
sameTpcFt0a->getPairHist()->Fill(step, fSampleIndex, posZ, track1.eta(), track1.eta(), deltaPhi, deltaEta, ampl * eventWeight * triggerWeight);
707+
sameTpcFt0a->getPairHist()->Fill(step, fSampleIndex, posZ, track1.eta(), eta, deltaPhi, deltaEta, ampl * eventWeight * triggerWeight);
708708
registry.fill(HIST("deltaEta_deltaPhi_same_TPC_FT0A"), deltaPhi, deltaEta, ampl * eventWeight * triggerWeight);
709709
} else if (corType == kFT0C) {
710710
registry.fill(HIST("Assoc_amp_same_TPC_FT0C"), chanelid, ampl);
711-
sameTpcFt0c->getPairHist()->Fill(step, fSampleIndex, posZ, track1.eta(), track1.eta(), deltaPhi, deltaEta, ampl * eventWeight * triggerWeight);
711+
sameTpcFt0c->getPairHist()->Fill(step, fSampleIndex, posZ, track1.eta(), eta, deltaPhi, deltaEta, ampl * eventWeight * triggerWeight);
712712
registry.fill(HIST("deltaEta_deltaPhi_same_TPC_FT0C"), deltaPhi, deltaEta, ampl * eventWeight * triggerWeight);
713713
}
714714
} else if (system == MixedEvent) {
715715
if (corType == kFT0A) {
716716
registry.fill(HIST("Assoc_amp_mixed_TPC_FT0A"), chanelid, ampl);
717-
mixedTpcFt0a->getPairHist()->Fill(step, fSampleIndex, posZ, track1.eta(), track1.eta(), deltaPhi, deltaEta, ampl * eventWeight * triggerWeight);
717+
mixedTpcFt0a->getPairHist()->Fill(step, fSampleIndex, posZ, track1.eta(), eta, deltaPhi, deltaEta, ampl * eventWeight * triggerWeight);
718718
registry.fill(HIST("deltaEta_deltaPhi_mixed_TPC_FT0A"), deltaPhi, deltaEta, ampl * eventWeight * triggerWeight);
719719
} else if (corType == kFT0C) {
720720
registry.fill(HIST("Assoc_amp_mixed_TPC_FT0C"), chanelid, ampl);
721-
mixedTpcFt0c->getPairHist()->Fill(step, fSampleIndex, posZ, track1.eta(), track1.eta(), deltaPhi, deltaEta, ampl * eventWeight * triggerWeight);
721+
mixedTpcFt0c->getPairHist()->Fill(step, fSampleIndex, posZ, track1.eta(), eta, deltaPhi, deltaEta, ampl * eventWeight * triggerWeight);
722722
registry.fill(HIST("deltaEta_deltaPhi_mixed_TPC_FT0C"), deltaPhi, deltaEta, ampl * eventWeight * triggerWeight);
723723
}
724724
}

0 commit comments

Comments
 (0)