@@ -606,22 +606,22 @@ struct PiNucleiFemto {
606606 bool fillCandidateInfoHyper (const aod::DataHypCandsWColl::iterator& V0Hyper, const Ttrack& trackPi, PiNucandidate& piHypercand, bool isMixedEvent)
607607 {
608608 piHypercand.collisionID = V0Hyper.collisionId ();
609- // get hypertriton information
610- // constexpr double mHe3 = o2::constants::physics::MassHelium3;
611- // constexpr double mPi = o2::constants::physics::MassPiPlus;
612- // --- He3
609+ // get hypertriton information
610+ // constexpr double mHe3 = o2::constants::physics::MassHelium3;
611+ // constexpr double mPi = o2::constants::physics::MassPiPlus;
612+ // --- He3
613613 float pxHe3 = V0Hyper.ptHe3 () * std::cos (V0Hyper.phiHe3 ());
614614 float pyHe3 = V0Hyper.ptHe3 () * std::sin (V0Hyper.phiHe3 ());
615615 float pzHe3 = V0Hyper.ptHe3 () * std::sinh (V0Hyper.etaHe3 ());
616- // float pHe3 = V0Hyper.ptHe3() * std::cosh(V0Hyper.etaHe3());
617- // float enHe3 = std::sqrt(pHe3 * pHe3 + mHe3 * mHe3);
618- // --- pi
616+ // float pHe3 = V0Hyper.ptHe3() * std::cosh(V0Hyper.etaHe3());
617+ // float enHe3 = std::sqrt(pHe3 * pHe3 + mHe3 * mHe3);
618+ // --- pi
619619 float pxPi = V0Hyper.ptPi () * std::cos (V0Hyper.phiPi ());
620620 float pyPi = V0Hyper.ptPi () * std::sin (V0Hyper.phiPi ());
621621 float pzPi = V0Hyper.ptPi () * std::sinh (V0Hyper.etaPi ());
622- // float pPi = V0Hyper.ptPi() * std::cosh(V0Hyper.etaPi());
623- // float enPi = std::sqrt(pPi * pPi + mPi * mPi);
624- // --- hypertriton
622+ // float pPi = V0Hyper.ptPi() * std::cosh(V0Hyper.etaPi());
623+ // float enPi = std::sqrt(pPi * pPi + mPi * mPi);
624+ // --- hypertriton
625625 float px = pxHe3 + pxPi;
626626 float py = pyHe3 + pyPi;
627627 float pz = pzHe3 + pzPi;
@@ -639,12 +639,12 @@ struct PiNucleiFemto {
639639 }
640640
641641 piHypercand.signPi = trackPi.sign ();
642- if (V0Hyper.isMatter ()){
642+ if (V0Hyper.isMatter ()) {
643643 piHypercand.signNu = 1 ;
644- }else {
644+ } else {
645645 piHypercand.signNu = -1 ;
646646 }
647-
647+
648648 piHypercand.dcaxyPi = trackPi.dcaXY ();
649649 piHypercand.dcazPi = trackPi.dcaZ ();
650650 piHypercand.tpcSignalPi = trackPi.tpcSignal ();
@@ -721,14 +721,14 @@ struct PiNucleiFemto {
721721 void pairTracksSameEventHyper (const Ttrack& piTracks, const Thypers& V0Hypers)
722722 {
723723 for (const auto & piTrack : piTracks) {
724-
724+
725725 mQaRegistry .fill (HIST (" hTrackSel" ), Selections::kNoCuts );
726-
726+
727727 if (!selectTrack (piTrack)) {
728728 continue ;
729729 }
730730 mQaRegistry .fill (HIST (" hTrackSel" ), Selections::kTrackCuts );
731-
731+
732732 if (!selectionPIDPion (piTrack)) {
733733 continue ;
734734 }
@@ -738,7 +738,7 @@ struct PiNucleiFemto {
738738
739739 SVCand pair;
740740 pair.tr0Idx = piTrack.globalIndex ();
741- pair.tr1Idx = V0Hyper.globalIndex ();
741+ pair.tr1Idx = V0Hyper.globalIndex ();
742742 const int collIdx = V0Hyper.collisionId ();
743743 CollBracket collBracket{collIdx, collIdx};
744744 pair.collBracket = collBracket;
@@ -971,7 +971,7 @@ struct PiNucleiFemto {
971971
972972 auto v0hyper = V0Hypers.rawIteratorAt (trackPair.tr1Idx );
973973 auto piTrack = piTracks.rawIteratorAt (trackPair.tr0Idx );
974- // auto collBracket = trackPair.collBracket;
974+ // auto collBracket = trackPair.collBracket;
975975
976976 PiNucandidate piNucand;
977977 if (!fillCandidateInfoHyper (v0hyper, piTrack, piNucand, isMixedEvent)) {
@@ -1033,7 +1033,7 @@ struct PiNucleiFemto {
10331033 mGoodCollisions [collision.globalIndex ()] = true ;
10341034 const uint64_t collIdx = collision.globalIndex ();
10351035 auto trackTableThisCollision = pitracks.sliceBy (mPerCol , collIdx);
1036- auto hypdTableThisCollision = V0Hypers.sliceBy (hypPerCol, collIdx);
1036+ auto hypdTableThisCollision = V0Hypers.sliceBy (hypPerCol, collIdx);
10371037 trackTableThisCollision.bindExternalIndices (&pitracks);
10381038 hypdTableThisCollision.bindExternalIndices (&V0Hypers);
10391039
@@ -1043,7 +1043,7 @@ struct PiNucleiFemto {
10431043 continue ;
10441044 }
10451045
1046- fillPairsHyper (collisions, pitracks, V0Hypers,/* isMixedEvent*/ false );
1046+ fillPairsHyper (collisions, pitracks, V0Hypers, /* isMixedEvent*/ false );
10471047 }
10481048 }
10491049 PROCESS_SWITCH (PiNucleiFemto, processSameEventHyper, " Process Same event" , false );
0 commit comments