Skip to content

Commit bafca63

Browse files
authored
Add files via upload
1 parent abc1f99 commit bafca63

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

PWGDQ/Tasks/dqEnergyCorrelator_direct.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ struct AnalysisEnergyCorrelator {
728728
}
729729

730730
Filter eventFilter = nabs(aod::collision::posZ) < fConfigEventOptions.fConfigEventfilterVtz && aod::evsel::sel8 == true;
731-
void processBarrelMixedEvent(soa::Filtered<MyEvents>& events, aod::TrackAssoc const& assocs, MyBarrelTracksWithCov const& /*tracks*/, aod::McCollisions const& /*mcCollisions*/, aod::McParticles const& mcParticles, BCsWithTimestamps const& bcs)
731+
void processBarrelMixedEvent(soa::Filtered<MyEvents> const& events, aod::TrackAssoc const& assocs, MyBarrelTracksWithCov const& /*tracks*/, aod::McCollisions const& /*mcCollisions*/, aod::McParticles const& mcParticles, BCsWithTimestamps const& bcs)
732732
{
733733
if (events.size() == 0) {
734734
return;
@@ -927,7 +927,7 @@ struct AnalysisEnergyCorrelator {
927927
}
928928
}
929929

930-
void processMCGenEnergyCorrelators(soa::Filtered<MyEvents>& events,
930+
void processMCGenEnergyCorrelators(soa::Filtered<MyEvents> const& events,
931931
McCollisions const& /*mcEvents*/, McParticles const& mcTracks, BCsWithTimestamps const& bcs)
932932
{
933933
if (events.size() == 0) {
@@ -957,7 +957,7 @@ struct AnalysisEnergyCorrelator {
957957
}
958958
}
959959

960-
void processMCGenEnergyCorrelatorsME(soa::Filtered<MyEvents>& events,
960+
void processMCGenEnergyCorrelatorsME(soa::Filtered<MyEvents> const& events,
961961
McCollisions const& /*mcEvents*/, McParticles const& mcTracks, BCsWithTimestamps const& bcs)
962962
{
963963
if (events.size() == 0) {
@@ -991,7 +991,7 @@ struct AnalysisEnergyCorrelator {
991991
}
992992
}
993993

994-
void processMCGenEnergyCorrelatorsPion(soa::Filtered<MyEvents>& events,
994+
void processMCGenEnergyCorrelatorsPion(soa::Filtered<MyEvents> const& events,
995995
McCollisions const& /*mcEvents*/, McParticles const& mcTracks, BCsWithTimestamps const& bcs)
996996
{
997997
if (events.size() == 0) {
@@ -1021,7 +1021,7 @@ struct AnalysisEnergyCorrelator {
10211021
}
10221022
}
10231023

1024-
void processMCGenEnergyCorrelatorsPionME(soa::Filtered<MyEvents>& events,
1024+
void processMCGenEnergyCorrelatorsPionME(soa::Filtered<MyEvents> const& events,
10251025
McCollisions const& /*mcEvents*/, McParticles const& mcTracks, BCsWithTimestamps const& bcs)
10261026
{
10271027
if (events.size() == 0) {

0 commit comments

Comments
 (0)