Skip to content

Commit e455644

Browse files
author
mattia
committed
Try to address some O2 linter errors.
1 parent f683c5e commit e455644

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGHF/TableProducer/treeCreatorSigmacCorrBkg.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ struct HfTreeCreatorSigmacCorrBkg {
7979
Configurable<int> selectionFlagLc{"selectionFlagLc", 1, "Selection Flag for Lc"};
8080
Configurable<float> yCandRecoMax{"yCandRecoMax", -1, "Maximum Sc candidate rapidity"};
8181

82+
HfHelper hfHelper;
83+
8284
using RecoLcMc = soa::Join<aod::HfCand3Prong, aod::HfCand3ProngMcRec, aod::HfSelLc, aod::HfMlLcToPKPi>;
8385
using RecoScMc = soa::Join<aod::HfCandSc, aod::HfCandScMcRec>;
8486
using ParticlesLcSigmac = soa::Join<aod::McParticles, aod::HfCand3ProngMcGen, aod::HfCandScMcGen>;
8587

86-
HfHelper hfHelper;
87-
8888
/// @brief init function
8989
void init(InitContext&) {}
9090

@@ -134,7 +134,7 @@ struct HfTreeCreatorSigmacCorrBkg {
134134
aod::TracksWMc const&)
135135
{
136136
/// loop over reconstructed Σc candidates
137-
for (auto& candidateSc : candidatesSc) {
137+
for (auto const& candidateSc : candidatesSc) {
138138

139139
auto candLcDauSc = candidateSc.template prongLc_as<RecoLcMc>();
140140
auto candSoftPiDauSc = candidateSc.template prong1_as<aod::TracksWMc>();

0 commit comments

Comments
 (0)