|
8 | 8 | // In applying this license CERN does not waive the privileges and immunities |
9 | 9 | // granted to it by virtue of its status as an Intergovernmental Organization |
10 | 10 | // or submit itself to any jurisdiction. |
| 11 | + |
11 | 12 | /// \file phianalysisrun3pbpb.cxx |
12 | 13 | /// \brief Code for phi resonance without resonance initializer |
13 | 14 | /// \author Sarjeeta Gami |
@@ -349,11 +350,11 @@ struct Phianalysisrun3pbpb { |
349 | 350 | return false; |
350 | 351 |
|
351 | 352 | } else if (pid == 1) { |
352 | | - constexpr double kPtThresholdForTOF = 0.5; |
353 | | - if (candidate.pt() < kPtThresholdForTOF && std::abs(candidate.tpcNSigmaKa()) < selectionConfig.nsigmacutTPC) { |
| 353 | + constexpr double PtThresholdForTOF = 0.5; |
| 354 | + if (candidate.pt() < PtThresholdForTOF && std::abs(candidate.tpcNSigmaKa()) < selectionConfig.nsigmacutTPC) { |
354 | 355 | return true; |
355 | 356 | } |
356 | | - if (candidate.pt() >= kPtThresholdForTOF && candidate.hasTOF() && candidate.beta() > cfgCutTOFBeta && |
| 357 | + if (candidate.pt() >= PtThresholdForTOF && candidate.hasTOF() && candidate.beta() > cfgCutTOFBeta && |
357 | 358 | std::abs(candidate.tpcNSigmaKa()) < selectionConfig.nsigmacutTPC && std::abs(candidate.tofNSigmaKa()) < selectionConfig.nsigmacutTOF) { |
358 | 359 | return true; |
359 | 360 | } |
@@ -461,10 +462,10 @@ struct Phianalysisrun3pbpb { |
461 | 462 | candidate1.pz() + candidate2.pz()}, |
462 | 463 | mass); |
463 | 464 |
|
464 | | - constexpr int kOppositeCharge = 0; |
| 465 | + constexpr int OppositeCharge = 0; |
465 | 466 |
|
466 | 467 | // default filling |
467 | | - if (rapidity > rapiditycut1 && rapidity < rapiditycut2 && track1Sign * track2Sign < kOppositeCharge) { |
| 468 | + if (rapidity > rapiditycut1 && rapidity < rapiditycut2 && track1Sign * track2Sign < OppositeCharge) { |
468 | 469 | if (unlike) { |
469 | 470 | histos.fill(HIST("h3PhiInvMassUnlikeSign"), multiplicity, pT, mass); |
470 | 471 | histos.fill(HIST("h2PhiRapidity"), pT, rapidity); |
@@ -2092,8 +2093,8 @@ struct Phianalysisrun3pbpb { |
2092 | 2093 | continue; |
2093 | 2094 |
|
2094 | 2095 | auto daughters = particle.daughters_as<aod::McParticles>(); |
2095 | | - static constexpr int kPhiNDaughters = 2; |
2096 | | - if (daughters.size() != kPhiNDaughters) |
| 2096 | + static constexpr int PhiNDaughters = 2; |
| 2097 | + if (daughters.size() != PhiNDaughters) |
2097 | 2098 | continue; |
2098 | 2099 |
|
2099 | 2100 | bool daup = false, daun = false; |
|
0 commit comments