@@ -234,7 +234,7 @@ struct HFCandidateCreatorBsMC {
234234
235235 // Match reconstructed candidates.
236236 for (auto & candidate : candidates) {
237- // Printf("New rec. candidate");
237+ // Printf("New rec. candidate");
238238 flag = 0 ;
239239 origin = 0 ;
240240 debug = 0 ;
@@ -247,11 +247,11 @@ struct HFCandidateCreatorBsMC {
247247 dsCand.index1_as <aod::BigTracksMC>(),
248248 dsCand.index2_as <aod::BigTracksMC>()};
249249 // Bs → Ds+ π-
250- // Printf("Checking Bs → Ds+ π-");
250+ // Printf("Checking Bs → Ds+ π-");
251251 indexRec = RecoDecay::getMatchedMCRec (particlesMC, arrayDaughters, pdg::Code::kBs , array{+kKPlus , -kKPlus , +kPiPlus , -kPiPlus }, true , &sign, 2 );
252252 if (indexRec > -1 ) {
253253 // Bs → Ds+ π-
254- // Printf("Checking Bs → Ds+ π-");
254+ // Printf("Checking Bs → Ds+ π-");
255255 indexRec = RecoDecay::getMatchedMCRec (particlesMC, arrayDaughtersDs, pdg::Code::kDs , array{+kKPlus , -kKPlus , +kPiPlus }, true , &sign, 1 );
256256 if (indexRec > -1 ) {
257257 flag = 1 << hf_cand_bs::DecayType::BsToDsPi;
@@ -265,14 +265,14 @@ struct HFCandidateCreatorBsMC {
265265
266266 // Match generated particles.
267267 for (auto & particle : particlesMC) {
268- // Printf("New gen. candidate");
268+ // Printf("New gen. candidate");
269269 flag = 0 ;
270270 origin = 0 ;
271271 // Bs → Ds+ π-
272272 if (RecoDecay::isMatchedMCGen (particlesMC, particle, pdg::Code::kLambdaB0 , array{int (pdg::Code::kDs ), -kPiPlus }, true )) {
273273 // Match Ds+ -> φπ -> K+K-π
274274 auto DsCandMC = particlesMC.iteratorAt (particle.daughter0Id ());
275- // Printf("Checking Ds+ -> φπ -> K+K-π");
275+ // Printf("Checking Ds+ -> φπ -> K+K-π");
276276 if (RecoDecay::isMatchedMCGen (particlesMC, DsCandMC, int (pdg::Code::kDs ), array{+kKPlus , -kKPlus , +kPiPlus }, true , &sign)) {
277277 flag = sign * (1 << hf_cand_bs::DecayType::BsToDsPi);
278278 }
0 commit comments