File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1773,7 +1773,7 @@ struct StrangenessInJets {
17731773 // Postprocessing
17741774 void processDerivedAnalysis (aod::V0InJets const & v0s, aod::CascInJets const & cascades)
17751775 {
1776- for (auto & v0 : v0s) {
1776+ for (const auto & v0 : v0s) {
17771777
17781778 if (v0.v0negITSlayers () < minITSnCls || v0.v0posITSlayers () < minITSnCls)
17791779 continue ;
@@ -1842,7 +1842,7 @@ struct StrangenessInJets {
18421842 }
18431843 }
18441844
1845- for (auto & casc : cascades) {
1845+ for (const auto & casc : cascades) {
18461846
18471847 if (casc.v0negITSlayers () < minITSnCls || casc.v0posITSlayers () < minITSnCls || casc.bachITSlayers () < minITSnCls)
18481848 continue ;
@@ -1966,8 +1966,8 @@ struct StrangenessInJets {
19661966 continue ;
19671967 }
19681968 // V0 mass window
1969- if (std::fabs (casc.masslambda () - o2::constants::physics::MassLambda0) > deltaMassLambda)
1970- continue ;
1969+ if (std::fabs (casc.masslambda () - o2::constants::physics::MassLambda0) > deltaMassLambda)
1970+ continue ;
19711971
19721972 // Reject candidates compatible with Xi
19731973 if (std::fabs (casc.massxi () - o2::constants::physics::MassXiMinus) < deltaMassXi)
You can’t perform that action at this time.
0 commit comments