Skip to content

Commit 5c9c7ef

Browse files
committed
Please consider the following formatting changes
1 parent 2030106 commit 5c9c7ef

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

PWGCF/Femto/FemtoNuclei/TableProducer/PiNucleiFemto.cxx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ struct PiNucleiFemto {
701701
// constexpr double mHe3 = o2::constants::physics::MassHelium3;
702702
// constexpr double mPi = o2::constants::physics::MassPiPlus;
703703
// --- He3
704-
float pxHe3 = V0Hyper.ptHe3() * std::cos(V0Hyper.phiHe3());
704+
float pxHe3 = V0Hyper.ptHe3() * std::cos(V0Hyper.phiHe3());
705705
float pyHe3 = V0Hyper.ptHe3() * std::sin(V0Hyper.phiHe3());
706706
float pzHe3 = V0Hyper.ptHe3() * std::sinh(V0Hyper.etaHe3());
707707
// float pHe3 = V0Hyper.ptHe3() * std::cosh(V0Hyper.etaHe3());
@@ -724,7 +724,7 @@ struct PiNucleiFemto {
724724
if (settingCutInvMass > 0 && invMass > settingCutInvMass) {
725725
return false;
726726
}
727-
727+
728728
piHypercand.signPi = trackPi.sign();
729729
if (V0Hyper.isMatter()) {
730730
piHypercand.signNu = 1;
@@ -754,7 +754,6 @@ struct PiNucleiFemto {
754754

755755
piHypercand.trackIDPi = trackPi.globalIndex();
756756

757-
758757
if (trackPi.hasTOF()) {
759758
float beta = o2::pid::tof::Beta::GetBeta(trackPi);
760759
beta = std::min(1.f - 1.e-6f, std::max(1.e-4f, beta)); /// sometimes beta > 1 or < 0, to be checked
@@ -1098,10 +1097,10 @@ struct PiNucleiFemto {
10981097
// auto collBracket = trackPair.collBracket;
10991098

11001099
PiNucandidate piNucand;
1101-
if (!fillCandidateInfoHyper(v0hyper, piTrack, piNucand, isMixedEvent)) {
1100+
if (!fillCandidateInfoHyper(v0hyper, piTrack, piNucand, isMixedEvent)) {
11021101
continue;
11031102
}
1104-
1103+
11051104
mQaRegistry.fill(HIST("hNuPt"), piNucand.recoPtNu());
11061105
mQaRegistry.fill(HIST("hPiPt"), piNucand.recoPtPi());
11071106
mQaRegistry.fill(HIST("hNuEta"), piNucand.recoEtaNu());
@@ -1231,9 +1230,9 @@ PROCESS_SWITCH(PiNucleiFemto, processMixedEventHyper, "Process Mixed event", fal
12311230
LOG(info) << "Initialized event pool with size = " << All_Event_pool.size();
12321231
}
12331232
for (auto const& collision : collisions) {
1234-
mQaRegistry.fill(HIST("hNcontributor"), collision.numContrib());
1235-
mQaRegistry.fill(HIST("hCentrality"), collision.centFT0C());
1236-
mQaRegistry.fill(HIST("hVtxZ"), collision.posZ());
1233+
mQaRegistry.fill(HIST("hNcontributor"), collision.numContrib());
1234+
mQaRegistry.fill(HIST("hCentrality"), collision.centFT0C());
1235+
mQaRegistry.fill(HIST("hVtxZ"), collision.posZ());
12371236
int poolIndexPi = where_pool(collision.posZ(), collision.centFT0C());
12381237
auto& pool = All_Event_pool[poolIndexPi];
12391238

0 commit comments

Comments
 (0)