@@ -203,7 +203,6 @@ struct lnnRecoTask {
203203 hEvents = qaRegistry.add <TH1>(" hEvents" , " ;Events; " , HistType::kTH1D , {{2 , -0.5 , 1.5 }});
204204 hLnnMassSel = qaRegistry.add <TH1>(" hLnnMassBefSel" , " ;M (GeV/#it{c}^{2}); " , HistType::kTH1D , {{60 , 2.9 , 3.8 }});
205205
206-
207206 hEvents->GetXaxis ()->SetBinLabel (1 , " All" );
208207 hEvents->GetXaxis ()->SetBinLabel (2 , " sel8" );
209208 if (doprocessMC) {
@@ -371,7 +370,7 @@ struct lnnRecoTask {
371370 continue ;
372371 }
373372 // Definition of lnn mass
374- float mLNN_HypHI = 2.99 ; // 2993.7 MeV/c**2
373+ float mLNN_HypHI = 2.99 ; // 2993.7 MeV/c**2
375374 float massLNNL = std::sqrt (h3lE * h3lE - lnnMom[0 ] * lnnMom[0 ] - lnnMom[1 ] * lnnMom[1 ] - lnnMom[2 ] * lnnMom[2 ]);
376375 bool isLNNMass = false ;
377376 if (massLNNL > mLNN_HypHI - masswidth && massLNNL < mLNN_HypHI + masswidth) {
@@ -398,7 +397,7 @@ struct lnnRecoTask {
398397 for (int i = 0 ; i < 3 ; i++) {
399398 lnnCand.decVtx [i] = lnnCand.decVtx [i] - primVtx[i];
400399 }
401-
400+
402401 // if survived all selections, propagate decay daughters to PV
403402 gpu::gpustd::array<float , 2 > dcaInfo;
404403
@@ -527,7 +526,7 @@ struct lnnRecoTask {
527526 hCentFV0A->Fill (collision.centFV0A ());
528527
529528 if (collision.has_mcCollision ()) {
530- isGoodCollision[collision.mcCollisionId ()] = true ;
529+ isGoodCollision[collision.mcCollisionId ()] = true ;
531530 }
532531
533532 const uint64_t collIdx = collision.globalIndex ();
@@ -558,7 +557,7 @@ struct lnnRecoTask {
558557
559558 // now we fill only the signal candidates that were not reconstructed
560559 for (auto & mcPart : particlesMC) {
561-
560+
562561 if (std::abs (mcPart.pdgCode ()) != lnnPdg)
563562 continue ;
564563 std::array<float , 3 > secVtx;
0 commit comments