We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6d5444 commit 7a6f946Copy full SHA for 7a6f946
1 file changed
PWGHF/TableProducer/treeCreatorSigmacCorrBkg.cxx
@@ -174,10 +174,6 @@ struct HfTreeCreatorSigmacCorrBkg {
174
}
175
176
177
- /// @brief dummy process function
178
- /// @param
179
- void process(aod::Tracks const&) {}
180
-
181
/// @brief process function to loop over the Σc reconstructed candidates and match them to corr. background sources in MC
182
void processReco(RecoScMc const& candidatesSc,
183
ParticlesLcSigmac const& particles,
@@ -354,7 +350,7 @@ struct HfTreeCreatorSigmacCorrBkg {
354
350
void processGen(aod::McParticles const& particles)
355
351
{
356
352
/// loop over particles
357
- for (auto& particle : particles) {
353
+ for (auto const& particle : particles) {
358
int pdgCodeAbs = std::abs(particle.pdgCode());
359
360
/// keep only Σc and Λc±(2595, 2625)
0 commit comments