Skip to content

Commit abd342c

Browse files
authored
Fix o2 linter error
1 parent d928090 commit abd342c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

PWGCF/TwoParticleCorrelations/Tasks/longrangeCorrelation.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -981,21 +981,21 @@ struct MultiplicityClassifier {
981981

982982
void processFT0C(aod::CentFT0Cs const& centralities)
983983
{
984-
for (auto& c : centralities) {
984+
for (auto const& c : centralities) {
985985
multvalue(c.centFT0C());
986986
}
987987
}
988988

989989
void processFV0A(aod::CentFV0As const& centralities)
990990
{
991-
for (auto& c : centralities) {
991+
for (auto const& c : centralities) {
992992
multvalue(c.centFV0A());
993993
}
994994
}
995995

996996
void processFT0M(aod::CentFT0Ms const& centralities)
997997
{
998-
for (auto& c : centralities) {
998+
for (auto const& c : centralities) {
999999
multvalue(c.centFT0M());
10001000
}
10011001
}

0 commit comments

Comments
 (0)