Skip to content

Commit 5663e2f

Browse files
authored
Merge pull request AliceO2Group#12 from alibuild/alibot-cleanup-6329
Please consider the following formatting changes to AliceO2Group#6329
2 parents d437fef + 172eb83 commit 5663e2f

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

PWGLF/DataModel/LFLnnTables.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ DECLARE_SOA_TABLE(MCLnnCands, "AOD", "MCLNNCANDS",
9494
o2::soa::Index<>,
9595
lnnrec::CentralityFT0A, lnnrec::CentralityFT0C, lnnrec::CentralityFT0M,
9696
lnnrec::XPrimVtx, lnnrec::YPrimVtx, lnnrec::ZPrimVtx,
97-
97+
9898
lnnrec::IsMatter,
9999
lnnrec::Pt3H, lnnrec::Phi3H, lnnrec::Eta3H,
100100
lnnrec::PtPi, lnnrec::PhiPi, lnnrec::EtaPi,

PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)