|
22 | 22 | #define HomogeneousField // needed for KFParticle::SetField(magneticField); |
23 | 23 | #endif |
24 | 24 |
|
25 | | -#include "PWGEM/PhotonMeson/Utils/PCMUtilities.h" |
26 | 25 | #include "PWGEM/Dilepton/Utils/PairUtilities.h" |
| 26 | +#include "PWGEM/PhotonMeson/Utils/PCMUtilities.h" |
27 | 27 | #include "PWGEM/PhotonMeson/Utils/TrackSelection.h" |
28 | 28 | #include "PWGHF/Core/CentralityEstimation.h" |
29 | 29 | #include "PWGHF/Core/DecayChannels.h" |
|
48 | 48 | #include <TH1.h> |
49 | 49 | #include <TPDGCode.h> |
50 | 50 |
|
51 | | -#include <Rtypes.h> |
52 | | - |
53 | 51 | #include <KFPTrack.h> |
54 | 52 | #include <KFPVertex.h> |
55 | 53 | #include <KFParticle.h> |
56 | 54 |
|
| 55 | +#include <Rtypes.h> |
| 56 | + |
57 | 57 | #include <algorithm> |
58 | 58 | #include <array> |
59 | 59 | #include <cmath> |
@@ -566,7 +566,7 @@ bool buildAndSelectGamma(const Coll& collision, const std::array<int, 3>& dDaugh |
566 | 566 | float gammaVtx[3] = {0.f, 0.f, 0.f}; |
567 | 567 | Vtx_recalculationParCov(o2::base::Propagator::Instance(), trackParPropPos, trackParPropNeg, gammaVtx, matCorr); |
568 | 568 | float radiusXy = std::hypot(gammaVtx[0], gammaVtx[1]); |
569 | | - const float maxX{83.1f}; // max X for track IU |
| 569 | + const float maxX{83.1f}; // max X for track IU |
570 | 570 | const float marginTpc{7.f}; // margin for r cut in cm |
571 | 571 | if (radiusXy > maxX + marginTpc) { |
572 | 572 | return false; |
@@ -629,8 +629,8 @@ bool buildAndSelectGamma(const Coll& collision, const std::array<int, 3>& dDaugh |
629 | 629 | return false; |
630 | 630 | } |
631 | 631 |
|
632 | | - KFParticle kfPartDecayVtxPos = kfPartPos; // Don't set Primary Vertex |
633 | | - KFParticle kfPartDecayVtxNeg = kfPartNeg; // Don't set Primary Vertex |
| 632 | + KFParticle kfPartDecayVtxPos = kfPartPos; // Don't set Primary Vertex |
| 633 | + KFParticle kfPartDecayVtxNeg = kfPartNeg; // Don't set Primary Vertex |
634 | 634 | kfPartDecayVtxPos.TransportToPoint(gammaVtx); // Don't set Primary Vertex |
635 | 635 | kfPartDecayVtxNeg.TransportToPoint(gammaVtx); // Don't set Primary Vertex |
636 | 636 | v0.dcaDau = kfPartDecayVtxPos.GetDistanceFromParticle(kfPartDecayVtxNeg); |
@@ -680,7 +680,8 @@ bool buildAndSelectGamma(const Coll& collision, const std::array<int, 3>& dDaugh |
680 | 680 |
|
681 | 681 | // distinguish V0 hypotheses |
682 | 682 | v0.alpha = alphaAP(v0.mom, v0.momPos, v0.momNeg); |
683 | | - v0.qt = qtAP(v0.momPos, v0.momNeg);; |
| 683 | + v0.qt = qtAP(v0.momPos, v0.momNeg); |
| 684 | + ; |
684 | 685 | if (!checkAP(v0.alpha, v0.qt, cfgGammaCuts.alphaApMax.value, cfgGammaCuts.qtApMax.value)) { // store only photon conversions |
685 | 686 | return false; |
686 | 687 | } |
|
0 commit comments